This commit is contained in:
Thomas Miceli 2024-09-10 00:10:40 +02:00
parent b790a68f1a
commit 6d76e9c2fb
3 changed files with 17 additions and 6 deletions

View file

@ -3,7 +3,7 @@ name: opengist
description: Opengist chart for Kubernetes
type: application
version: 0.1.0
appVersion: "1.7.3"
appVersion: "1.7.4"
maintainers:
- name: thomiceli
url: https://github.com/thomiceli

View file

@ -6,6 +6,11 @@ metadata:
namespace: {{ .Release.Namespace }}
labels:
{{ include "opengist.labels" . | indent 4 }}
annotations:
helm.sh/resource-policy: "keep"
{{- with .Values.persistence.annotations }}
{{ toYaml . | indent 4 }}
{{- end }}
spec:
accessModes:
- {{ .Values.persistence.accessMode | quote }}

View file

@ -4,13 +4,18 @@
image:
repository: ghcr.io/thomiceli/opengist
pullPolicy: IfNotPresent
pullPolicy: Always
tag: ""
## - YAML config of Opengist https://github.com/thomiceli/opengist/blob/master/docs/configuration/cheat-sheet.md - ##
# Uses a ConfigMap for non-sensitive configuration
config: {}
# log-output: stdout
config:
custom.static-links:
- name: Discord │
path: https://discord.gg/9Pm3X5scZT │
git.default-branch: master │
log-level: warn │
log-output: stdout
# Uses a Secret for sensitive configuration
configSecret: {}
@ -26,8 +31,8 @@ replicaCount: 1
strategy:
type: RollingUpdate
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
maxSurge: 1
maxUnavailable: 0
imagePullSecrets: []
@ -87,6 +92,7 @@ persistence:
# storageClass:
accessMode: ReadWriteOnce
size: 10Gi
annotations: {}
autoscaling:
enabled: false