Skip to content
Closed
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
12 changes: 11 additions & 1 deletion .github/scripts/end2end/fix-zookeeper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ done

# Patch the StatefulSet with JVM flags to disable container support
# as ubuntu runners now are incompatible with zookeeper.
# Also raise the exec probe timeouts: operators without the ZKOP-529 fix
# leave probe timeoutSeconds at 0, which Kubernetes floors to 1s; with
# ExecProbeTimeout enforced the readiness script gets killed before the
# observer-to-participant promotion completes and the pod never turns Ready.
kubectl -n "${NAMESPACE}" patch statefulset "${ZK_STS_NAME}" --type='strategic' \
-p '{
"spec": {
Expand All @@ -76,7 +80,13 @@ kubectl -n "${NAMESPACE}" patch statefulset "${ZK_STS_NAME}" --type='strategic'
"name": "JVMFLAGS",
"value": "-Xmx512m -Xms512m -XX:-UseContainerSupport -XX:ActiveProcessorCount=1 -Djava.awt.headless=true -Dzookeeper.log.dir=/data/logs -Dzookeeper.root.logger=INFO,CONSOLE -Dlog4j.configuration=file:/data/conf/log4j.properties"
}
]
],
"readinessProbe": {
"timeoutSeconds": 10
},
"livenessProbe": {
"timeoutSeconds": 10
}
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion solution/deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ vault:
dashboard: vault2/vault-dashboards
policy: vault2/vault-policies
image: vault2
tag: 8.10.5
tag: 8.10.6
envsubst: VAULT_TAG
zenko-operator:
sourceRegistry: ghcr.io/scality
Expand Down
Loading