We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12f136a + 34e7d27 commit 60698cbCopy full SHA for 60698cb
controllers/ceilometer_controller.go
@@ -764,6 +764,15 @@ func (r *CeilometerReconciler) reconcileMysqldExporter(
764
return r.reconcileDeleteMysqldExporter(ctx, instance, helper)
765
}
766
767
+ if instance.Spec.MysqldExporterImage == "" {
768
+ instance.CeilometerStatus.Conditions.Set(condition.FalseCondition(
769
+ telemetryv1.MysqldExporterDeploymentReadyCondition,
770
+ condition.ErrorReason,
771
+ condition.SeverityError,
772
+ "mysqld_exporter container image isn't set"))
773
+ return ctrl.Result{}, nil
774
+ }
775
+
776
configMapVars := make(map[string]env.Setter)
777
//
778
// TLS input validation
0 commit comments