Skip to content

Commit

Permalink
fix: schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Sep 1, 2021
1 parent 9a7ad1e commit 34010ac
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions values-schema.yaml
Expand Up @@ -582,6 +582,7 @@ definitions:
description: Requested resources (guaranteed).
title: Pod resources
runAsUser:
description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
type: integer
minimum": 0
maximum": 65535
Expand Down Expand Up @@ -692,9 +693,11 @@ definitions:
runAsUser:
$ref: '#/definitions/runAsUser'
runAsNonRoot:
description: Enforces that the container must run as non root. This implies that the UID must also be set with runAsUser.
type: boolean
default: true
runAsGroup:
description: The GID to run the entrypoint of the container process. Defaults to group specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.
type: integer
minimum": 0
maximum": 65535
Expand Down Expand Up @@ -746,10 +749,13 @@ definitions:
type: object
- properties:
securityContext:
additionalProperties:
uniqueItems: true
runAsUser:
$ref: '#/definitions/runAsUser'
properties:
runAsUser:
$ref: '#/definitions/runAsUser'
readOnlyRootFilesystem:
description: Whether this container has a read-only root filesystem. Default is false.
type: boolean
default: false
- $ref: '#/definitions/containerSpec'
- properties:
autoCD:
Expand Down

0 comments on commit 34010ac

Please sign in to comment.