Skip to content

Commit 5b9f8aa

Browse files
committed
Add support for reverting security context
1 parent c04ab4c commit 5b9f8aa

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cluster-controller/src/main/java/io/strimzi/controller/cluster/operator/resource/StatefulSetOperator.java

+1
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@ protected Future<ReconcileResult<P>> internalPatch(String namespace, String name
265265
protected StatefulSetDiff revertStorageChanges(StatefulSet current, StatefulSet desired) {
266266
desired.getSpec().setVolumeClaimTemplates(current.getSpec().getVolumeClaimTemplates());
267267
desired.getSpec().getTemplate().getSpec().setInitContainers(current.getSpec().getTemplate().getSpec().getInitContainers());
268+
desired.getSpec().getTemplate().getSpec().setSecurityContext(current.getSpec().getTemplate().getSpec().getSecurityContext());
268269

269270
if (current.getSpec().getVolumeClaimTemplates().isEmpty()) {
270271
// We are on ephemeral storage and changing to persistent

0 commit comments

Comments
 (0)