@@ -851,12 +851,12 @@ func (r *ReconcileArgoCD) reconcileRedisHAProxyDeployment(cr *argoproj.ArgoCD) e
851
851
explanation += "container volume mounts"
852
852
changed = true
853
853
}
854
- if ! reflect .DeepEqual (deploy .Spec .Template .Spec .InitContainers [ 0 ]. Env , existing .Spec .Template .Spec .InitContainers [ 0 ]. Env ) {
855
- existing .Spec .Template .Spec .InitContainers [ 0 ]. Env = deploy .Spec .Template .Spec .InitContainers [ 0 ]. Env
854
+ if ! reflect .DeepEqual (deploy .Spec .Template .Spec .InitContainers , existing .Spec .Template .Spec .InitContainers ) {
855
+ existing .Spec .Template .Spec .InitContainers = deploy .Spec .Template .Spec .InitContainers
856
856
if changed {
857
857
explanation += ", "
858
858
}
859
- explanation += "init containers env "
859
+ explanation += "init containers"
860
860
changed = true
861
861
}
862
862
if ! reflect .DeepEqual (deploy .Spec .Template .Spec .Containers [0 ].Env ,
@@ -884,22 +884,6 @@ func (r *ReconcileArgoCD) reconcileRedisHAProxyDeployment(cr *argoproj.ArgoCD) e
884
884
explanation += "container security context"
885
885
changed = true
886
886
}
887
- if ! reflect .DeepEqual (deploy .Spec .Template .Spec .InitContainers [0 ].Resources , existing .Spec .Template .Spec .InitContainers [0 ].Resources ) {
888
- existing .Spec .Template .Spec .InitContainers [0 ].Resources = deploy .Spec .Template .Spec .InitContainers [0 ].Resources
889
- if changed {
890
- explanation += ", "
891
- }
892
- explanation += "init container resources"
893
- changed = true
894
- }
895
- if ! reflect .DeepEqual (deploy .Spec .Template .Spec .InitContainers [0 ].SecurityContext , existing .Spec .Template .Spec .InitContainers [0 ].SecurityContext ) {
896
- existing .Spec .Template .Spec .InitContainers [0 ].SecurityContext = deploy .Spec .Template .Spec .InitContainers [0 ].SecurityContext
897
- if changed {
898
- explanation += ", "
899
- }
900
- explanation += "init container security context"
901
- changed = true
902
- }
903
887
if changed {
904
888
argoutil .LogResourceUpdate (log , existing , "updating" , explanation )
905
889
return r .Client .Update (context .TODO (), existing )
0 commit comments