Skip to content

Commit

Permalink
fix: consistent definition of securityContext values
Browse files Browse the repository at this point in the history
  • Loading branch information
patst committed Mar 27, 2024
1 parent 7d3e3e4 commit ae4a1ae
Showing 1 changed file with 6 additions and 50 deletions.
56 changes: 6 additions & 50 deletions charts/opentelemetry-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1650,56 +1650,12 @@
]
},
"securityContext": {
"type": "object",
"default": {},
"title": "The securityContext Schema",
"required": [
"runAsGroup",
"runAsNonRoot",
"runAsUser",
"fsGroup"
],
"additionalProperties": false,
"properties": {
"runAsGroup": {
"type": "integer",
"default": 0,
"title": "The runAsGroup Schema",
"examples": [
65532
]
},
"runAsNonRoot": {
"type": "boolean",
"default": false,
"title": "The runAsNonRoot Schema",
"examples": [
true
]
},
"runAsUser": {
"type": "integer",
"default": 0,
"title": "The runAsUser Schema",
"examples": [
65532
]
},
"fsGroup": {
"type": "integer",
"default": 0,
"title": "The fsGroup Schema",
"examples": [
65532
]
}
},
"examples": [{
"runAsGroup": 65532,
"runAsNonRoot": true,
"runAsUser": 65532,
"fsGroup": 65532
}]
"type": "object",
"default": {},
"title": "The securityContext Schema",
"required": [],
"properties": {},
"examples": [{}]
},
"testFramework": {
"type": "object",
Expand Down

0 comments on commit ae4a1ae

Please sign in to comment.