Skip to content

Commit

Permalink
Make Zookeeper DefaultMode YAML 1.2 Compliant
Browse files Browse the repository at this point in the history
With the YAML 1.2 spec octals must be prefixed with `0o` and not `0`.
Parsers implementing the latest spec run into issues. See discussion
here: dtolnay/serde-yaml#225

This commit makes the Zookeeper script mount compliant with YAML 1.2.

Signed-off-by: Marc Schreiber <[email protected]>
  • Loading branch information
schrieveslaach committed Dec 4, 2023
1 parent 550e3f1 commit 246e1fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bitnami/zookeeper/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ spec:
- name: scripts
configMap:
name: {{ printf "%s-scripts" (include "common.names.fullname" .) }}
defaultMode: 0755
defaultMode: 0o755
{{- if or .Values.configuration .Values.existingConfigmap }}
- name: config
configMap:
Expand Down

0 comments on commit 246e1fc

Please sign in to comment.