Merge 28be5ea9bc into fb9b96bf75
This commit is contained in:
commit
2a457dd528
|
|
@ -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 | |
|
||||
| `serviceAccount.annotations` | Set annotations to the service account | |
|
||||
| `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 | |
|
||||
| `podLabels` | Set labels for the controller pod | |
|
||||
| `serviceAccount.name` | Set the name of the service account | |
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@ kind: Deployment
|
|||
metadata:
|
||||
name: {{ include "actions-runner-controller.fullname" . }}
|
||||
namespace: {{ .Release.Namespace }}
|
||||
{{- with .Values.annotations }}
|
||||
annotations:
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
labels:
|
||||
{{- include "actions-runner-controller.labels" . | nindent 4 }}
|
||||
spec:
|
||||
|
|
|
|||
|
|
@ -83,6 +83,7 @@ serviceAccount:
|
|||
# If not set and create is true, a name is generated using the fullname template
|
||||
name: ""
|
||||
|
||||
annotations: {}
|
||||
podAnnotations: {}
|
||||
|
||||
podLabels: {}
|
||||
|
|
|
|||
Loading…
Reference in New Issue