allow for additional container environment variables (#16) All checks were successful continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Co-authored-by: Jasper Orschulko <Jasper.Orschulko@irisgmbh.de> Reviewed-on: gitea/helm-chart#16 Reviewed-by: luhahn <luhahn@noreply.gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit was merged in pull request #16.
This commit is contained in:
@@ -2,7 +2,7 @@ apiVersion: v2 | ||||
name: gitea | ||||
description: Gitea Helm chart for Kubernetes | ||||
type: application | ||||
version: 1.4.4 | ||||
version: 1.4.5 | ||||
appVersion: 1.12.4 | ||||
icon: https://docs.gitea.io/images/gitea.png | ||||
| ||||
| ||||
@@ -182,6 +182,7 @@ Like the admin user the ldap settings can be updated but also disabled or delete | ||||
| Parameter | Description | Default | | ||||
|---------------------|-----------------------------------|------------------------------| | ||||
|statefulset.terminationGracePeriodSeconds| Image to start for this pod | gitea/gitea | | ||||
|statefulset.env | Additional environment variables to pass to containers | [] | | ||||
| ||||
| ||||
### Image | ||||
| ||||
@@ -87,6 +87,10 @@ spec: | ||||
value: {{ .Values.gitea.config.server.SSH_LISTEN_PORT | quote }} | ||||
- name: SSH_PORT | ||||
value: {{ .Values.gitea.config.server.SSH_PORT | quote }} | ||||
{{- range .Values.statefulset.env }} | ||||
- name: {{ .name | quote | nospace }} | ||||
value: {{ .value | quote }} | ||||
{{- end }} | ||||
ports: | ||||
- name: ssh | ||||
containerPort: {{ .Values.gitea.config.server.SSH_LISTEN_PORT }} | ||||
| ||||
@@ -55,6 +55,9 @@ tolerations: [] | ||||
affinity: {} | ||||
| ||||
statefulset: | ||||
env: [] | ||||
# - name: VARIABLE | ||||
# value: my-value | ||||
terminationGracePeriodSeconds: 60 | ||||
| ||||
persistence: | ||||
| ||||
Reference in New Issue
Block a user