update access-manager to 0.9.0 (#97)
Signed-off-by: Christian Kotzbauer <git@ckotzbauer.de>
This commit is contained in:
parent
4936d46bbd
commit
6f7650dd22
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
description: Kubernetes-Operator to simplify RBAC configurations
|
description: Kubernetes-Operator to simplify RBAC configurations
|
||||||
name: access-manager
|
name: access-manager
|
||||||
version: 0.8.1
|
version: 0.9.0
|
||||||
appVersion: 0.8.1
|
appVersion: 0.9.0
|
||||||
home: https://github.com/ckotzbauer/access-manager
|
home: https://github.com/ckotzbauer/access-manager
|
||||||
sources:
|
sources:
|
||||||
- https://github.com/ckotzbauer/access-manager
|
- https://github.com/ckotzbauer/access-manager
|
||||||
|
|
|
||||||
|
|
@ -42,7 +42,7 @@ The following table lists the configurable parameters of the Access-Manager char
|
||||||
| -------------------------------------- | ------------------------------------------------- | ------------------------------------- |
|
| -------------------------------------- | ------------------------------------------------- | ------------------------------------- |
|
||||||
| `replicas` | replicas of deployment (leader-election only > 1) | `1` |
|
| `replicas` | replicas of deployment (leader-election only > 1) | `1` |
|
||||||
| `image.repository` | container image repository | `ghcr.io/ckotzbauer/access-manager` |
|
| `image.repository` | container image repository | `ghcr.io/ckotzbauer/access-manager` |
|
||||||
| `image.tag` | container image tag | `0.8.1` |
|
| `image.tag` | container image tag | `0.9.0` |
|
||||||
| `image.pullPolicy` | container image pull policy | `IfNotPresent` |
|
| `image.pullPolicy` | container image pull policy | `IfNotPresent` |
|
||||||
| `nodeSelector` | node labels for pod assignment | `{}` |
|
| `nodeSelector` | node labels for pod assignment | `{}` |
|
||||||
| `tolerations` | node tolerations for pod assignment | `[]` |
|
| `tolerations` | node tolerations for pod assignment | `[]` |
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ replicas: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/ckotzbauer/access-manager
|
repository: ghcr.io/ckotzbauer/access-manager
|
||||||
tag: 0.8.1
|
tag: 0.9.0
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
@ -23,6 +23,13 @@ securityContext:
|
||||||
privileged: false
|
privileged: false
|
||||||
runAsUser: 1001
|
runAsUser: 1001
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
readOnlyRootFilesystem: true
|
||||||
|
seccompProfile:
|
||||||
|
type: RuntimeDefault
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
|
||||||
serviceAccount:
|
serviceAccount:
|
||||||
# Specifies whether a ServiceAccount should be created
|
# Specifies whether a ServiceAccount should be created
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue