Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ spec:
strategy: persistent
retention: 24h
persistent:
pvcStorageRequest: 20G
pvcStorageRequest: 10G
autoscaling:
enabled: false
aodh:
Expand Down
5 changes: 5 additions & 0 deletions pkg/openstack/telemetry.go
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,11 @@ func ReconcileTelemetry(ctx context.Context, instance *corev1beta1.OpenStackCont
if telemetry.Spec.Autoscaling.HeatInstance == "" {
telemetry.Spec.Autoscaling.HeatInstance = heatName
}
if telemetry.Spec.MetricStorage.MonitoringStack != nil &&
telemetry.Spec.MetricStorage.MonitoringStack.Persistent != nil &&
telemetry.Spec.MetricStorage.MonitoringStack.Persistent.PvcStorageClass == "" {
telemetry.Spec.MetricStorage.MonitoringStack.Persistent.PvcStorageClass = instance.Spec.StorageClass
}
if telemetry.Spec.CloudKitty.StorageClass == "" {
telemetry.Spec.CloudKitty.StorageClass = instance.Spec.StorageClass
}
Expand Down