ChrisFraun commented on code in PR #24588:
URL: https://github.com/apache/airflow/pull/24588#discussion_r1003242671
##########
chart/values.schema.json:
##########
@@ -1608,21 +1689,65 @@
}
],
"$ref":
"#/definitions/io.k8s.api.core.v1.ResourceRequirements"
+ },
+ "containerSecurityContext": {
+ "description": "Container security context
definition. The values in this parameter will be used when
`containerSecurityContext` is not defined for specific Containers",
+ "type": "object",
+ "$ref":
"#/definitions/io.k8s.api.core.v1.SecurityContext",
+ "default": {
+ "runAsUser": 0
+ },
+ "x-docsSection": "Kubernetes",
+ "examples": [
+ {
+ "allowPrivilegeEscalation": false,
+ "capabilities": {
+ "drop": [
+ "ALL"
+ ]
+ }
+ }
+ ]
}
}
},
- "securityContext": {
Review Comment:
added some legacy tests and also readded the schema for the deprecated
securityContext, lets see what the test say :)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]