Chart: Include value for annotations in controller (deployment)
This commit is contained in:
parent
47dfed3ced
commit
28be5ea9bc
|
|
@ -57,6 +57,7 @@ All additional docs are kept in the `docs/` folder, this README is solely for do
|
||||||
| `nameOverride` | Override the resource name prefix | |
|
| `nameOverride` | Override the resource name prefix | |
|
||||||
| `serviceAccount.annotations` | Set annotations to the service account | |
|
| `serviceAccount.annotations` | Set annotations to the service account | |
|
||||||
| `serviceAccount.create` | Deploy the controller pod under a service account | true |
|
| `serviceAccount.create` | Deploy the controller pod under a service account | true |
|
||||||
|
| `annotations` | Set annotations for the controller deployment | |
|
||||||
| `podAnnotations` | Set annotations for the controller pod | |
|
| `podAnnotations` | Set annotations for the controller pod | |
|
||||||
| `podLabels` | Set labels for the controller pod | |
|
| `podLabels` | Set labels for the controller pod | |
|
||||||
| `serviceAccount.name` | Set the name of the service account | |
|
| `serviceAccount.name` | Set the name of the service account | |
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,10 @@ kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "actions-runner-controller.fullname" . }}
|
name: {{ include "actions-runner-controller.fullname" . }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
|
{{- with .Values.annotations }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml . | nindent 4 }}
|
||||||
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "actions-runner-controller.labels" . | nindent 4 }}
|
{{- include "actions-runner-controller.labels" . | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
|
|
|
||||||
|
|
@ -83,6 +83,7 @@ serviceAccount:
|
||||||
# If not set and create is true, a name is generated using the fullname template
|
# If not set and create is true, a name is generated using the fullname template
|
||||||
name: ""
|
name: ""
|
||||||
|
|
||||||
|
annotations: {}
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
||||||
podLabels: {}
|
podLabels: {}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue