Use image tag instead of image version in values (#91)

Use image tag instead of image version in values

Change to tenary function instead of if

Update description and add link to tag list

Fixup readme

Co-authored-by: Lauris BH <lauris@nix.lv>
Reviewed-on: https://gitea.com/gitea/helm-chart/pulls/91
Reviewed-by: luhahn <luhahn@noreply.gitea.io>
Reviewed-by: techknowlogick <techknowlogick@gitea.io>
Co-Authored-By: lafriks <lafriks@noreply.gitea.io>
Co-Committed-By: lafriks <lafriks@noreply.gitea.io>
This commit is contained in:
lafriks 2020-12-21 06:53:45 +08:00 committed by techknowlogick
parent 2826258cfc
commit 2c066d7c9e
3 changed files with 15 additions and 15 deletions

View File

@ -4,9 +4,9 @@
## Introduction ## Introduction
This helm chart has taken some inspiration from https://github.com/jfelten/gitea-helm-chart This helm chart has taken some inspiration from <https://github.com/jfelten/gitea-helm-chart>
But takes a completly different approach in providing database and cache with dependencies. But takes a completly different approach in providing database and cache with dependencies.
Also this chart provides ldap and admin user configuration with values as well as it is deployed as statefulset to retain stored repositories. Also this chart provides LDAP and admin user configuration with values as well as it is deployed as statefulset to retain stored repositories.
## Dependencies ## Dependencies
@ -21,7 +21,7 @@ Dependencies:
## Installing ## Installing
``` ```sh
helm repo add gitea-charts https://dl.gitea.io/charts/ helm repo add gitea-charts https://dl.gitea.io/charts/
helm install gitea gitea-charts/gitea helm install gitea gitea-charts/gitea
``` ```
@ -60,7 +60,7 @@ INSTALL_LOCK is always set to true, since we want to configure gitea with this h
If a builtIn database is enabled the database configuration is set automatically. For example postgresql builtIn which will appear in the app.ini as: If a builtIn database is enabled the database configuration is set automatically. For example postgresql builtIn which will appear in the app.ini as:
``` ```ini
[database] [database]
DB_TYPE = postgres DB_TYPE = postgres
HOST = RELEASE-NAME-postgresql.default.svc.cluster.local:5432 HOST = RELEASE-NAME-postgresql.default.svc.cluster.local:5432
@ -73,7 +73,7 @@ USER = gitea
Memcached is handled the exakt same way as database builtIn. Once memcached builtIn is enabled, this chart will generate the following part in the app.ini: Memcached is handled the exakt same way as database builtIn. Once memcached builtIn is enabled, this chart will generate the following part in the app.ini:
``` ```ini
[cache] [cache]
ADAPTER = memcache ADAPTER = memcache
ENABLED = true ENABLED = true
@ -85,7 +85,7 @@ HOST = RELEASE-NAME-memcached.default.svc.cluster.local:11211
The server defaults are a bit more complex. The server defaults are a bit more complex.
If ingress is enabled, the ROOT_URL, DOMAIN and SSH_DOMAIN will be set accordingly. HTTP_PORT always defaults to 3000 as well as SSH_PORT to 22. If ingress is enabled, the ROOT_URL, DOMAIN and SSH_DOMAIN will be set accordingly. HTTP_PORT always defaults to 3000 as well as SSH_PORT to 22.
``` ```ini
[server] [server]
APP_DATA_PATH = /data APP_DATA_PATH = /data
DOMAIN = git.example.com DOMAIN = git.example.com
@ -235,8 +235,8 @@ It is not possible to delete an admin user after it has been created. This has t
### LDAP Settings ### LDAP Settings
Like the admin user the ldap settings can be updated but also disabled or deleted. Like the admin user the LDAP settings can be updated but also disabled or deleted.
All ldap values from https://docs.gitea.io/en-us/command-line/#admin are available. All LDAP values from <https://docs.gitea.io/en-us/command-line/#admin> are available.
You can either use them in camel case or kebab case. You can either use them in camel case or kebab case.
camelCase: camelCase:
@ -300,7 +300,7 @@ Annotations can be added to the Gitea pod.
| Parameter | Description | Default | | Parameter | Description | Default |
|---------------------|-----------------------------------|------------------------------| |---------------------|-----------------------------------|------------------------------|
|image.repository| Image to start for this pod | gitea/gitea | |image.repository| Image to start for this pod | gitea/gitea |
|image.version| Image Version | 1.13.0 | |image.tag| [Image tag](https://hub.docker.com/r/gitea/gitea/tags?page=1&ordering=last_updated) | 1.13.0 |
|image.pullPolicy| Image pull policy | Always | |image.pullPolicy| Image pull policy | Always |
### Persistence ### Persistence

View File

@ -28,7 +28,7 @@ spec:
fsGroup: 1000 fsGroup: 1000
initContainers: initContainers:
- name: init - name: init
image: "{{ .Values.image.repository }}:{{ .Values.image.version }}" image: "{{ .Values.image.repository }}:{{ ternary .Values.image.version .Values.image.tag (hasKey .Values.image "version") }}"
command: ["/usr/sbin/init_gitea.sh"] command: ["/usr/sbin/init_gitea.sh"]
volumeMounts: volumeMounts:
- name: init - name: init
@ -40,7 +40,7 @@ spec:
terminationGracePeriodSeconds: {{ .Values.statefulset.terminationGracePeriodSeconds }} terminationGracePeriodSeconds: {{ .Values.statefulset.terminationGracePeriodSeconds }}
containers: containers:
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.version }}" image: "{{ .Values.image.repository }}:{{ ternary .Values.image.version .Values.image.tag (hasKey .Values.image "version") }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
env: env:
# SSH Port values have to be set here as well for openssh configuration # SSH Port values have to be set here as well for openssh configuration

View File

@ -8,7 +8,7 @@ clusterDomain: cluster.local
image: image:
repository: gitea/gitea repository: gitea/gitea
version: 1.13.0 tag: 1.13.0
pullPolicy: Always pullPolicy: Always
imagePullSecrets: [] imagePullSecrets: []