mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-04-05 09:10:46 +00:00
Merge branch 'service-account-add'
This commit is contained in:
@ -78,6 +78,7 @@ You should be good to go!
|
|||||||
| `statefulset.dind.extraEnvs` | Allows adding custom environment variables, such as `DOCKER_IPTABLES_LEGACY` | `[]` |
|
| `statefulset.dind.extraEnvs` | Allows adding custom environment variables, such as `DOCKER_IPTABLES_LEGACY` | `[]` |
|
||||||
| `statefulset.persistence.size` | Size for persistence to store act runner data | `1Gi` |
|
| `statefulset.persistence.size` | Size for persistence to store act runner data | `1Gi` |
|
||||||
| `statefulset.securityContext` | Customize the SecurityContext | `{}` |
|
| `statefulset.securityContext` | Customize the SecurityContext | `{}` |
|
||||||
|
| `statefulset.serviceAccountName` | Customize the service account name | `""` |
|
||||||
| `existingSecret` | Secret that contains the token | `""` |
|
| `existingSecret` | Secret that contains the token | `""` |
|
||||||
| `existingSecretKey` | Secret key | `""` |
|
| `existingSecretKey` | Secret key | `""` |
|
||||||
| `giteaRootURL` | URL the act_runner registers and connect with | `""` |
|
| `giteaRootURL` | URL the act_runner registers and connect with | `""` |
|
||||||
|
|||||||
@ -31,6 +31,9 @@ spec:
|
|||||||
{{- end }}
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
restartPolicy: Always
|
restartPolicy: Always
|
||||||
|
{{- if .Values.statefulset.serviceAccountName }}
|
||||||
|
serviceAccountName: {{ .Values.statefulset.serviceAccountName }}
|
||||||
|
{{- end }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.statefulset.securityContext | nindent 8 }}
|
{{- toYaml .Values.statefulset.securityContext | nindent 8 }}
|
||||||
initContainers:
|
initContainers:
|
||||||
|
|||||||
@ -488,3 +488,15 @@ tests:
|
|||||||
echo "Trying again in 3 seconds..."
|
echo "Trying again in 3 seconds..."
|
||||||
done
|
done
|
||||||
echo "Gitea has been reached!"
|
echo "Gitea has been reached!"
|
||||||
|
- it: should render service account name correctly
|
||||||
|
template: templates/statefulset.yaml
|
||||||
|
set:
|
||||||
|
enabled: true
|
||||||
|
statefulset:
|
||||||
|
serviceAccountName: "my-service-account"
|
||||||
|
asserts:
|
||||||
|
- hasDocuments:
|
||||||
|
count: 1
|
||||||
|
- equal:
|
||||||
|
path: spec.template.spec.serviceAccountName
|
||||||
|
value: "my-service-account"
|
||||||
|
|||||||
@ -34,6 +34,7 @@
|
|||||||
## @param statefulset.dind.extraEnvs Allows adding custom environment variables, such as `DOCKER_IPTABLES_LEGACY`
|
## @param statefulset.dind.extraEnvs Allows adding custom environment variables, such as `DOCKER_IPTABLES_LEGACY`
|
||||||
## @param statefulset.persistence.size Size for persistence to store act runner data
|
## @param statefulset.persistence.size Size for persistence to store act runner data
|
||||||
## @param statefulset.securityContext Customize the SecurityContext
|
## @param statefulset.securityContext Customize the SecurityContext
|
||||||
|
## @param statefulset.serviceAccountName Customize the service account name
|
||||||
## @param existingSecret Secret that contains the token
|
## @param existingSecret Secret that contains the token
|
||||||
## @param existingSecretKey Secret key
|
## @param existingSecretKey Secret key
|
||||||
## @param giteaRootURL URL the act_runner registers and connect with
|
## @param giteaRootURL URL the act_runner registers and connect with
|
||||||
@ -49,6 +50,7 @@ statefulset:
|
|||||||
affinity: {}
|
affinity: {}
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
|
serviceAccountName: ""
|
||||||
|
|
||||||
actRunner:
|
actRunner:
|
||||||
registry: "docker.gitea.com"
|
registry: "docker.gitea.com"
|
||||||
|
|||||||
Reference in New Issue
Block a user