Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
1eb0eee3bc | |||
9106d68cdc | |||
551f4e312e | |||
d1c58a2e77 | |||
9213f0d1f5 | |||
7ed82c7a63 | |||
33903d8f6c | |||
4682597b04 | |||
790d0405c2 | |||
28e94f96e3 | |||
b5ab7201d1 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
charts
|
charts
|
||||||
Chart.lock
|
Chart.lock
|
||||||
|
.DS_Store
|
||||||
|
@ -3,7 +3,7 @@ name: gitea
|
|||||||
description: Gitea Helm chart for Kubernetes
|
description: Gitea Helm chart for Kubernetes
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.0
|
version: 0.0.0
|
||||||
appVersion: 1.13.1
|
appVersion: 1.13.2
|
||||||
icon: https://docs.gitea.io/images/gitea.png
|
icon: https://docs.gitea.io/images/gitea.png
|
||||||
|
|
||||||
keywords:
|
keywords:
|
||||||
|
74
README.md
74
README.md
@ -288,6 +288,47 @@ kebab-case:
|
|||||||
bind-password: JustAnotherBindPw
|
bind-password: JustAnotherBindPw
|
||||||
username-attribute: CN
|
username-attribute: CN
|
||||||
```
|
```
|
||||||
|
### OAuth2 Settings
|
||||||
|
|
||||||
|
Like the admin user the OAuth2 settings can be updated but also disabled or deleted.
|
||||||
|
All OAuth2 values from <https://docs.gitea.io/en-us/command-line/#admin> are available.
|
||||||
|
You can either use them in camel case or kebab case.
|
||||||
|
|
||||||
|
camelCase:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
gitea:
|
||||||
|
oauth:
|
||||||
|
enabled: true
|
||||||
|
name: 'MyAwesomeGiteaOAuth'
|
||||||
|
provider: 'openidConnect'
|
||||||
|
key: 'hello'
|
||||||
|
secret: 'world'
|
||||||
|
autoDiscoverUrl: 'https://gitea.example.com/.well-known/openid-configuration'
|
||||||
|
#useCustomUrls:
|
||||||
|
#customAuthUrl:
|
||||||
|
#customTokenUrl:
|
||||||
|
#customProfileUrl:
|
||||||
|
#customEmailUrl:
|
||||||
|
```
|
||||||
|
|
||||||
|
kebab-case:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
gitea:
|
||||||
|
oauth:
|
||||||
|
enabled: true
|
||||||
|
name: 'MyAwesomeGiteaOAuth'
|
||||||
|
provider: 'openidConnect'
|
||||||
|
key: 'hello'
|
||||||
|
secret: 'world'
|
||||||
|
auto-discover-url: 'https://gitea.example.com/.well-known/openid-configuration'
|
||||||
|
#use-custom-urls:
|
||||||
|
#custom-auth-url:
|
||||||
|
#custom-token-url:
|
||||||
|
#custom-profile-url:
|
||||||
|
#custom-email-url:
|
||||||
|
```
|
||||||
|
|
||||||
### Metrics and profiling
|
### Metrics and profiling
|
||||||
|
|
||||||
@ -304,7 +345,7 @@ gitea:
|
|||||||
|
|
||||||
config:
|
config:
|
||||||
server:
|
server:
|
||||||
PPROF_ENABLED: true
|
ENABLE_PPROF: true
|
||||||
```
|
```
|
||||||
|
|
||||||
### Pod Annotations
|
### Pod Annotations
|
||||||
@ -327,13 +368,14 @@ Annotations can be added to the Gitea pod.
|
|||||||
| extraVolumes | Additional volumes to mount to the Gitea statefulset | {} |
|
| extraVolumes | Additional volumes to mount to the Gitea statefulset | {} |
|
||||||
| extraVolumeMounts | Additional volumes mounts for the Gitea containers | {} |
|
| extraVolumeMounts | Additional volumes mounts for the Gitea containers | {} |
|
||||||
| initPreScript | Bash script copied verbatim to start of init container | |
|
| initPreScript | Bash script copied verbatim to start of init container | |
|
||||||
|
| securityContext | Run as a specific securityContext | {} |
|
||||||
|
|
||||||
### Image
|
### Image
|
||||||
|
|
||||||
| 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.tag| [Image tag](https://hub.docker.com/r/gitea/gitea/tags?page=1&ordering=last_updated) | 1.13.1 |
|
|image.tag| [Image tag](https://hub.docker.com/r/gitea/gitea/tags?page=1&ordering=last_updated) | 1.13.2 |
|
||||||
|image.pullPolicy| Image pull policy | Always |
|
|image.pullPolicy| Image pull policy | Always |
|
||||||
|
|
||||||
### Persistence
|
### Persistence
|
||||||
@ -375,6 +417,34 @@ Annotations can be added to the Gitea pod.
|
|||||||
|---------------------|-----------------------------------|------------------------------|
|
|---------------------|-----------------------------------|------------------------------|
|
||||||
|gitea.config | Everything in app.ini can be configured with this dict. See Examples for more details | {} |
|
|gitea.config | Everything in app.ini can be configured with this dict. See Examples for more details | {} |
|
||||||
|
|
||||||
|
### Gitea Probes
|
||||||
|
|
||||||
|
Configure Liveness, Readiness and Startup [Probes](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)
|
||||||
|
|
||||||
|
| Parameter | Description | Default |
|
||||||
|
|---------------------|-----------------------------------|------------------------------|
|
||||||
|
|gitea.livenessProbe.enabled | Enable liveness probe | true |
|
||||||
|
|gitea.livenessProbe.initialDelaySeconds | Delay before probe start| 200 |
|
||||||
|
|gitea.livenessProbe.timeoutSeconds | probe timeout | 1 |
|
||||||
|
|gitea.livenessProbe.periodSeconds | period between probes | 10 |
|
||||||
|
|gitea.livenessProbe.successThreshold | Minimum consecutive success probes | 1 |
|
||||||
|
|gitea.livenessProbe.failureThreshold | Minimum consecutive error probes | 10 |
|
||||||
|
|gitea.readinessProbe.enabled | Enable readiness probe | true |
|
||||||
|
|gitea.readinessProbe.initialDelaySeconds | Delay before probe start| 200 |
|
||||||
|
|gitea.readinessProbe.timeoutSeconds | probe timeout | 1 |
|
||||||
|
|gitea.readinessProbe.periodSeconds | period between probes | 10 |
|
||||||
|
|gitea.readinessProbe.successThreshold | Minimum consecutive success probes | 1 |
|
||||||
|
|gitea.readinessProbe.failureThreshold | Minimum consecutive error probes | 10 |
|
||||||
|
|gitea.startupProbe.enabled | Enable startup probe | false |
|
||||||
|
|gitea.startupProbe.initialDelaySeconds | Delay before probe start| 200 |
|
||||||
|
|gitea.startupProbe.timeoutSeconds | probe timeout | 1 |
|
||||||
|
|gitea.startupProbe.periodSeconds | period between probes | 10 |
|
||||||
|
|gitea.startupProbe.successThreshold | Minimum consecutive success probes | 1 |
|
||||||
|
|gitea.startupProbe.failureThreshold | Minimum consecutive error probes | 10 |
|
||||||
|
|gitea.customLivenessProbe | Custom liveness probe (needs `gitea.livenessProbe.enabled: false`) | |
|
||||||
|
|gitea.customReadinessProbe | Custom readiness probe (needs `gitea.readinessProbe.enabled: false`) | |
|
||||||
|
|gitea.customStartupProbe | Custom startup probe (needs `gitea.startupProbe.enabled: false`) | |
|
||||||
|
|
||||||
### Memcached BuiltIn
|
### Memcached BuiltIn
|
||||||
|
|
||||||
Memcached is loaded as a dependency from [Bitnami](https://github.com/bitnami/charts/tree/master/bitnami/memcached) if enabled in the values. Complete Configuration can be taken from their website.
|
Memcached is loaded as a dependency from [Bitnami](https://github.com/bitnami/charts/tree/master/bitnami/memcached) if enabled in the values. Complete Configuration can be taken from their website.
|
||||||
|
@ -36,9 +36,11 @@ Common labels
|
|||||||
*/}}
|
*/}}
|
||||||
{{- define "gitea.labels" -}}
|
{{- define "gitea.labels" -}}
|
||||||
helm.sh/chart: {{ include "gitea.chart" . }}
|
helm.sh/chart: {{ include "gitea.chart" . }}
|
||||||
|
app: {{ include "gitea.name" . }}
|
||||||
{{ include "gitea.selectorLabels" . }}
|
{{ include "gitea.selectorLabels" . }}
|
||||||
{{- if .Chart.AppVersion }}
|
{{- if .Chart.AppVersion }}
|
||||||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
||||||
|
version: {{ .Chart.AppVersion | quote }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
@ -58,7 +60,7 @@ app.kubernetes.io/instance: {{ .Release.Name }}
|
|||||||
{{- printf "%s-mysql" .Release.Name -}}
|
{{- printf "%s-mysql" .Release.Name -}}
|
||||||
{{- else if .Values.gitea.database.builtIn.mariadb.enabled -}}
|
{{- else if .Values.gitea.database.builtIn.mariadb.enabled -}}
|
||||||
{{- printf "%s-mariadb" .Release.Name -}}
|
{{- printf "%s-mariadb" .Release.Name -}}
|
||||||
{{- else -}}
|
{{- else if ne .Values.gitea.config.database.DB_TYPE "sqlite3" -}}
|
||||||
{{- $parts := split ":" .Values.gitea.config.database.HOST -}}
|
{{- $parts := split ":" .Values.gitea.config.database.HOST -}}
|
||||||
{{- printf "%s %s" $parts._0 $parts._1 -}}
|
{{- printf "%s %s" $parts._0 $parts._1 -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
@ -105,4 +107,12 @@ app.kubernetes.io/instance: {{ .Release.Name }}
|
|||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{- define "gitea.oauth_settings" -}}
|
||||||
|
{{- range $key, $val := .Values.gitea.oauth -}}
|
||||||
|
{{- if ne $key "enabled" -}}
|
||||||
|
{{- printf "--%s %s " ($key | kebabcase) ($val | quote) -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
@ -69,8 +69,8 @@ stringData:
|
|||||||
{{- if not (hasKey .Values.gitea.config.server "APP_DATA_PATH") -}}
|
{{- if not (hasKey .Values.gitea.config.server "APP_DATA_PATH") -}}
|
||||||
{{- $_ := set .Values.gitea.config.server "APP_DATA_PATH" "/data" -}}
|
{{- $_ := set .Values.gitea.config.server "APP_DATA_PATH" "/data" -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- if not (hasKey .Values.gitea.config.server "PPROF_ENABLED") -}}
|
{{- if not (hasKey .Values.gitea.config.server "ENABLE_PPROF") -}}
|
||||||
{{- $_ := set .Values.gitea.config.server "PPROF_ENABLED" false -}}
|
{{- $_ := set .Values.gitea.config.server "ENABLE_PPROF" false -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
{{- /* metrics default settings */ -}}
|
{{- /* metrics default settings */ -}}
|
||||||
|
@ -21,14 +21,16 @@ stringData:
|
|||||||
mkdir -p /data/gitea/conf
|
mkdir -p /data/gitea/conf
|
||||||
cp /etc/gitea/conf/app.ini /data/gitea/conf/app.ini
|
cp /etc/gitea/conf/app.ini /data/gitea/conf/app.ini
|
||||||
chmod a+rwx /data/gitea/conf/app.ini
|
chmod a+rwx /data/gitea/conf/app.ini
|
||||||
|
{{- if include "db.servicename" . }}
|
||||||
nc -v -w2 -z {{ include "db.servicename" . }} {{ include "db.port" . }} && \
|
nc -v -w2 -z {{ include "db.servicename" . }} {{ include "db.port" . }} && \
|
||||||
|
{{- end }}
|
||||||
su git -c ' \
|
su git -c ' \
|
||||||
set -x; \
|
set -x; \
|
||||||
gitea migrate; \
|
gitea migrate; \
|
||||||
{{- if and .Values.gitea.admin.username .Values.gitea.admin.password }}
|
{{- if and .Values.gitea.admin.username .Values.gitea.admin.password }}
|
||||||
gitea admin create-user --username {{ .Values.gitea.admin.username }} --password '{{ .Values.gitea.admin.password }}' --email {{ .Values.gitea.admin.email }} --admin --must-change-password=false \
|
gitea admin create-user --username {{ .Values.gitea.admin.username }} --password {{ .Values.gitea.admin.password | quote }} --email {{ .Values.gitea.admin.email }} --admin --must-change-password=false \
|
||||||
|| \
|
|| \
|
||||||
gitea admin change-password --username {{ .Values.gitea.admin.username }} --password '{{ .Values.gitea.admin.password }}'; \
|
gitea admin change-password --username {{ .Values.gitea.admin.username }} --password {{ .Values.gitea.admin.password | quote }}; \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if .Values.gitea.ldap.enabled }}
|
{{- if .Values.gitea.ldap.enabled }}
|
||||||
gitea admin auth add-ldap \
|
gitea admin auth add-ldap \
|
||||||
@ -40,4 +42,14 @@ stringData:
|
|||||||
{{- include "gitea.ldap_settings" . | nindent 6 }} \
|
{{- include "gitea.ldap_settings" . | nindent 6 }} \
|
||||||
) \
|
) \
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.gitea.oauth.enabled }}
|
||||||
|
gitea admin auth add-oauth \
|
||||||
|
{{- include "gitea.oauth_settings" . | nindent 6 }} \
|
||||||
|
|| \
|
||||||
|
( \
|
||||||
|
export GITEA_AUTH_ID=$(gitea admin auth list | grep {{ .Values.gitea.oauth.name | quote }} | awk -F " " "{print \$1}"); \
|
||||||
|
gitea admin auth update-oauth --id ${GITEA_AUTH_ID} \
|
||||||
|
{{- include "gitea.oauth_settings" . | nindent 6 }} \
|
||||||
|
) \
|
||||||
|
{{- end }}
|
||||||
'
|
'
|
||||||
|
@ -5,6 +5,9 @@ metadata:
|
|||||||
name: {{ include "gitea.fullname" . }}
|
name: {{ include "gitea.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "gitea.labels" . | nindent 4 }}
|
{{- include "gitea.labels" . | nindent 4 }}
|
||||||
|
{{- if .Values.gitea.metrics.serviceMonitor.prometheusSelector }}
|
||||||
|
prometheus: {{ .Values.gitea.metrics.serviceMonitor.prometheusSelector }}
|
||||||
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
|
@ -8,8 +8,16 @@ metadata:
|
|||||||
{{- toYaml .Values.service.ssh.annotations | nindent 4 }}
|
{{- toYaml .Values.service.ssh.annotations | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
type: {{ .Values.service.ssh.type }}
|
type: {{ .Values.service.ssh.type }}
|
||||||
{{- if and .Values.service.ssh.loadBalancerIP (eq .Values.service.ssh.type "LoadBalancer") }}
|
{{- if eq .Values.service.ssh.type "LoadBalancer" }}
|
||||||
|
{{- if .Values.service.ssh.loadBalancerIP }}
|
||||||
loadBalancerIP: {{ .Values.service.ssh.loadBalancerIP }}
|
loadBalancerIP: {{ .Values.service.ssh.loadBalancerIP }}
|
||||||
|
{{- end -}}
|
||||||
|
{{- if .Values.service.ssh.loadBalancerSourceRanges }}
|
||||||
|
loadBalancerSourceRanges:
|
||||||
|
{{- range .Values.service.ssh.loadBalancerSourceRanges }}
|
||||||
|
- {{ . }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if and .Values.service.ssh.clusterIP (eq .Values.service.ssh.type "ClusterIP") }}
|
{{- if and .Values.service.ssh.clusterIP (eq .Values.service.ssh.type "ClusterIP") }}
|
||||||
clusterIP: {{ .Values.service.ssh.clusterIP }}
|
clusterIP: {{ .Values.service.ssh.clusterIP }}
|
||||||
|
@ -15,11 +15,12 @@ spec:
|
|||||||
annotations:
|
annotations:
|
||||||
checksum/config: {{ include (print $.Template.BasePath "/gitea/config.yaml") . | sha256sum }}
|
checksum/config: {{ include (print $.Template.BasePath "/gitea/config.yaml") . | sha256sum }}
|
||||||
checksum/ldap: {{ include "gitea.ldap_settings" . | sha256sum }}
|
checksum/ldap: {{ include "gitea.ldap_settings" . | sha256sum }}
|
||||||
|
checksum/oauth: {{ include "gitea.oauth_settings" . | sha256sum }}
|
||||||
{{- with .Values.gitea.podAnnotations }}
|
{{- with .Values.gitea.podAnnotations }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "gitea.selectorLabels" . | nindent 8 }}
|
{{- include "gitea.labels" . | nindent 8 }}
|
||||||
spec:
|
spec:
|
||||||
{{- with .Values.imagePullSecrets }}
|
{{- with .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
@ -66,27 +67,53 @@ spec:
|
|||||||
containerPort: {{ .Values.gitea.config.server.SSH_LISTEN_PORT }}
|
containerPort: {{ .Values.gitea.config.server.SSH_LISTEN_PORT }}
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: {{ .Values.gitea.config.server.HTTP_PORT }}
|
containerPort: {{ .Values.gitea.config.server.HTTP_PORT }}
|
||||||
{{- if .Values.gitea.config.server.PPROF_ENABLED }}
|
{{- if .Values.gitea.config.server.ENABLE_PPROF }}
|
||||||
- name: profiler
|
- name: profiler
|
||||||
containerPort: 6060
|
containerPort: 6060
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.gitea.livenessProbe.enabled }}
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: 200
|
initialDelaySeconds: {{ .Values.gitea.livenessProbe.initialDelaySeconds }}
|
||||||
timeoutSeconds: 1
|
periodSeconds: {{ .Values.gitea.livenessProbe.periodSeconds }}
|
||||||
periodSeconds: 10
|
timeoutSeconds: {{ .Values.gitea.livenessProbe.timeoutSeconds }}
|
||||||
successThreshold: 1
|
successThreshold: {{ .Values.gitea.livenessProbe.successThreshold }}
|
||||||
failureThreshold: 10
|
failureThreshold: {{ .Values.gitea.livenessProbe.failureThreshold }}
|
||||||
|
{{- else if .Values.gitea.customLivenessProbe }}
|
||||||
|
livenessProbe:
|
||||||
|
{{- toYaml .Values.gitea.customLivenessProbe | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.gitea.readinessProbe.enabled }}
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: http
|
port: http
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: {{ .Values.gitea.readinessProbe.initialDelaySeconds }}
|
||||||
periodSeconds: 10
|
periodSeconds: {{ .Values.gitea.readinessProbe.periodSeconds }}
|
||||||
successThreshold: 1
|
timeoutSeconds: {{ .Values.gitea.readinessProbe.timeoutSeconds }}
|
||||||
failureThreshold: 3
|
successThreshold: {{ .Values.gitea.readinessProbe.successThreshold }}
|
||||||
|
failureThreshold: {{ .Values.gitea.readinessProbe.failureThreshold }}
|
||||||
|
{{- else if .Values.gitea.customReadinessProbe }}
|
||||||
|
readinessProbe:
|
||||||
|
{{- toYaml .Values.gitea.customReadinessProbe | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- if .Values.gitea.startupProbe.enabled }}
|
||||||
|
startupProbe:
|
||||||
|
tcpSocket:
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: {{ .Values.gitea.startupProbe.initialDelaySeconds }}
|
||||||
|
periodSeconds: {{ .Values.gitea.startupProbe.periodSeconds }}
|
||||||
|
timeoutSeconds: {{ .Values.gitea.startupProbe.timeoutSeconds }}
|
||||||
|
successThreshold: {{ .Values.gitea.startupProbe.successThreshold }}
|
||||||
|
failureThreshold: {{ .Values.gitea.startupProbe.failureThreshold }}
|
||||||
|
{{- else if .Values.gitea.customStartupProbe }}
|
||||||
|
startupProbe:
|
||||||
|
{{- toYaml .Values.gitea.customStartupProbe | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{- toYaml .Values.resources | nindent 12 }}
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
mountPath: /data
|
mountPath: /data
|
||||||
|
65
values.yaml
65
values.yaml
@ -8,11 +8,13 @@ clusterDomain: cluster.local
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: gitea/gitea
|
repository: gitea/gitea
|
||||||
tag: 1.13.1
|
tag: 1.13.2
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
|
|
||||||
|
securityContext: {}
|
||||||
|
|
||||||
service:
|
service:
|
||||||
http:
|
http:
|
||||||
type: ClusterIP
|
type: ClusterIP
|
||||||
@ -29,6 +31,7 @@ service:
|
|||||||
#nodePort:
|
#nodePort:
|
||||||
#externalTrafficPolicy:
|
#externalTrafficPolicy:
|
||||||
#externalIPs:
|
#externalIPs:
|
||||||
|
loadBalancerSourceRanges: []
|
||||||
annotations:
|
annotations:
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
@ -111,6 +114,7 @@ gitea:
|
|||||||
enabled: false
|
enabled: false
|
||||||
serviceMonitor:
|
serviceMonitor:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
# prometheusSelector: default
|
||||||
|
|
||||||
ldap:
|
ldap:
|
||||||
enabled: false
|
enabled: false
|
||||||
@ -127,6 +131,19 @@ gitea:
|
|||||||
#usernameAttribute:
|
#usernameAttribute:
|
||||||
#sshPublicKeyAttribute:
|
#sshPublicKeyAttribute:
|
||||||
|
|
||||||
|
oauth:
|
||||||
|
enabled: false
|
||||||
|
#name:
|
||||||
|
#provider:
|
||||||
|
#key:
|
||||||
|
#secret:
|
||||||
|
#autoDiscoverUrl:
|
||||||
|
#useCustomUrls:
|
||||||
|
#customAuthUrl:
|
||||||
|
#customTokenUrl:
|
||||||
|
#customProfileUrl:
|
||||||
|
#customEmailUrl:
|
||||||
|
|
||||||
config: {}
|
config: {}
|
||||||
# APP_NAME: "Gitea: Git with a cup of tea"
|
# APP_NAME: "Gitea: Git with a cup of tea"
|
||||||
# RUN_MODE: dev
|
# RUN_MODE: dev
|
||||||
@ -152,6 +169,52 @@ gitea:
|
|||||||
builtIn:
|
builtIn:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|
||||||
|
livenessProbe:
|
||||||
|
enabled: true
|
||||||
|
initialDelaySeconds: 200
|
||||||
|
timeoutSeconds: 1
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 10
|
||||||
|
readinessProbe:
|
||||||
|
enabled: true
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
timeoutSeconds: 1
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
startupProbe:
|
||||||
|
enabled: false
|
||||||
|
initialDelaySeconds: 60
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 10
|
||||||
|
|
||||||
|
# customLivenessProbe:
|
||||||
|
# httpGet:
|
||||||
|
# path: /user/login
|
||||||
|
# port: http
|
||||||
|
# initialDelaySeconds: 60
|
||||||
|
# periodSeconds: 10
|
||||||
|
# successThreshold: 1
|
||||||
|
# failureThreshold: 10
|
||||||
|
# customReadinessProbe:
|
||||||
|
# httpGet:
|
||||||
|
# path: /user/login
|
||||||
|
# port: http
|
||||||
|
# initialDelaySeconds: 5
|
||||||
|
# periodSeconds: 10
|
||||||
|
# successThreshold: 1
|
||||||
|
# failureThreshold: 3
|
||||||
|
# customStartupProbe:
|
||||||
|
# httpGet:
|
||||||
|
# path: /user/login
|
||||||
|
# port: http
|
||||||
|
# initialDelaySeconds: 60
|
||||||
|
# periodSeconds: 10
|
||||||
|
# successThreshold: 1
|
||||||
|
# failureThreshold: 10
|
||||||
|
|
||||||
memcached:
|
memcached:
|
||||||
service:
|
service:
|
||||||
port: 11211
|
port: 11211
|
||||||
|
Reference in New Issue
Block a user