Kubernetes Permissions
Kubernetes Permissions
pipekit
pipekit-job
# Manage the creation of Kubernetes Secrets to store the various passwords created by the pipekit-init Kubernetes Job.
- apiGroups:
- ""
resources:
- secrets
verbs:
- get
- patch
- create
# When the pipekit-init job is run, it will create a new secret to store the various passwords. This secret is then mounted into the various Pipekit services as a volume. This permission is required to allow the pipekit-init job to restart the `id` and `users` services after the secret has been created or changed so that we can ensure the new passwords are used by those services
- apiGroups:
- "apps"
resources:
- deployments
verbs:
- get
- patchPipekit-Agent
Last updated