Skip to content

Commit

Permalink
fix: missing fsGroup resulted in invalid yaml output (#2596)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Mar 25, 2021
1 parent 0b26aa8 commit 5da85c4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions chart/kubeapps/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,24 @@
}
}
}
},
"securityContext": {
"properties": {
"enabled": {
"title": "Enable security context",
"type": "boolean",
"default": false
},
"fsgroup": {
"title": "File System Group ID",
"type": "integer"
},
"runAsUser": {
"title": "File System User ID",
"type": "integer"
}
},
"title": "Security Context"
}
}
}
2 changes: 1 addition & 1 deletion chart/kubeapps/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ rbac:
securityContext:
enabled: false
runAsUser: 1001
# fsGroup: 1001
fsGroup: 1001

## Image used for the tests. The only requirement is to include curl
##
Expand Down

0 comments on commit 5da85c4

Please sign in to comment.