Skip to content

Commit

Permalink
fix(examples): use yaml 1.1 octal numbers in kubernetes manifest files (
Browse files Browse the repository at this point in the history
#5273)

Kubernetes only supports YAML 1.1, and we recently fixed a bug to read kubernetes manifests using the correct YAML version (#5184)

We accidentally did not update the example to use the old-style octal numbers. Searching for `0o` gives no further results at least in the garden repo.
  • Loading branch information
stefreak authored Oct 19, 2023
1 parent 7b6e1d4 commit 450099a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/kubernetes-deploy/redis/redis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ spec:
- name: health
configMap:
name: redis-health
defaultMode: 0o755
defaultMode: 0755
- name: config
configMap:
name: redis
Expand Down Expand Up @@ -350,7 +350,7 @@ spec:
- name: health
configMap:
name: redis-health
defaultMode: 0o755
defaultMode: 0755
- name: config
configMap:
name: redis
Expand Down

0 comments on commit 450099a

Please sign in to comment.