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.
core
1 parent 8eeb07f commit 5798751Copy full SHA for 5798751
pkg/system/phase2_creating.go
@@ -478,6 +478,9 @@ func (r *Reconciler) setDesiredCoreEnv(c *corev1.Container) {
478
util.MergeEnvArrays(&c.Env, &[]corev1.EnvVar{envVar});
479
}
480
481
+ if r.NooBaa.Spec.EnvVariablesOverride != nil && r.NooBaa.Spec.EnvVariablesOverride.Core != nil {
482
+ util.MergeEnvArrays(&c.Env, &r.NooBaa.Spec.EnvVariablesOverride.Core);
483
+ }
484
485
486
// SetDesiredCoreApp updates the CoreApp as desired for reconciling
0 commit comments