feat(gui): expose capabilities in GUI (#1709)

* feat(common): expose capabilities in GUI

* add advanced podsecuritycontext include to all Apps

* add securityContext advanced include to all Apps
This commit is contained in:
Kjeld Schouten-Lebbing
2022-01-13 12:18:20 +01:00
committed by GitHub
parent f861eb9eaf
commit 80039c40a7
228 changed files with 512 additions and 4488 deletions
@@ -0,0 +1,20 @@
- variable: fsGroupChangePolicy
label: "When should we take ownership?"
schema:
type: string
default: "OnRootMismatch"
enum:
- value: "OnRootMismatch"
description: "OnRootMismatch"
- value: "Always"
description: "Always"
- variable: supplementalGroups
label: "supplemental Groups"
schema:
type: list
default: []
items:
- variable: supplementalGroupsEntry
label: "supplemental Group"
schema:
type: int
@@ -0,0 +1,25 @@
- variable: capabilities
label: "Capabilities"
schema:
type: dict
attrs:
- variable: drop
label: "Drop Capability"
schema:
type: list
default: []
items:
- variable: dropEntry
label: ""
schema:
type: string
- variable: add
label: "Add Capability"
schema:
type: list
default: []
items:
- variable: addEntry
label: ""
schema:
type: string