mirror of
https://gitea.com/gitea/helm-actions.git
synced 2025-10-21 23:18:13 +00:00
Compare commits
4 Commits
v0.0.1
...
81fb896135
Author | SHA1 | Date | |
---|---|---|---|
81fb896135 | |||
![]() |
fb7635950c | ||
bf56769a35 | |||
b8058bee05 |
23
README.md
23
README.md
@@ -16,6 +16,29 @@ If `.Values.image.rootless: true`, then the following will occur. In case you us
|
|||||||
|
|
||||||
- If `.Values.provisioning.enabled: true`, then uses the rootless Gitea image, must match helm-Gitea.
|
- If `.Values.provisioning.enabled: true`, then uses the rootless Gitea image, must match helm-Gitea.
|
||||||
|
|
||||||
|
## Quick-start
|
||||||
|
|
||||||
|
To get started, add the Helm repo, assuming you have not already:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
helm repo add gitea-charts https://dl.gitea.com/charts/
|
||||||
|
helm repo update
|
||||||
|
```
|
||||||
|
|
||||||
|
Then pull the values.yaml file and fill it accordingly.
|
||||||
|
|
||||||
|
```sh
|
||||||
|
helm show values gitea-charts/actions > values.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
Deploy with your values, make sure the path is correct:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
helm upgrade --install gitea-actions gitea-charts/actions -f values.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
You should be good to go!
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
|
|
||||||
### Gitea Actions
|
### Gitea Actions
|
||||||
|
@@ -114,6 +114,10 @@ spec:
|
|||||||
tolerations:
|
tolerations:
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.statefulset.dnsConfig }}
|
||||||
|
dnsConfig:
|
||||||
|
{{- toYaml .Values.statefulset.dnsConfig | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
volumes:
|
volumes:
|
||||||
- name: act-runner-config
|
- name: act-runner-config
|
||||||
configMap:
|
configMap:
|
||||||
|
@@ -11,6 +11,7 @@
|
|||||||
## @param statefulset.resources Act runner resources
|
## @param statefulset.resources Act runner resources
|
||||||
## @param statefulset.nodeSelector NodeSelector for the statefulset
|
## @param statefulset.nodeSelector NodeSelector for the statefulset
|
||||||
## @param statefulset.tolerations Tolerations for the statefulset
|
## @param statefulset.tolerations Tolerations for the statefulset
|
||||||
|
## @param statefulset.dnsConfig dnsConfig for the statefulset
|
||||||
## @param statefulset.affinity Affinity for the statefulset
|
## @param statefulset.affinity Affinity for the statefulset
|
||||||
## @param statefulset.extraVolumes Extra volumes for the statefulset
|
## @param statefulset.extraVolumes Extra volumes for the statefulset
|
||||||
## @param statefulset.actRunner.repository The Gitea act runner image
|
## @param statefulset.actRunner.repository The Gitea act runner image
|
||||||
@@ -36,6 +37,7 @@ statefulset:
|
|||||||
resources: {}
|
resources: {}
|
||||||
nodeSelector: {}
|
nodeSelector: {}
|
||||||
tolerations: []
|
tolerations: []
|
||||||
|
dnsConfig: {}
|
||||||
affinity: {}
|
affinity: {}
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user