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 description: Opengist chart for Kubernetes
type: application type: application
version: 0.1.0 version: 0.1.0
appVersion: "1.7.3" appVersion: "1.7.4"
maintainers: maintainers:
- name: thomiceli - name: thomiceli
url: https://github.com/thomiceli url: https://github.com/thomiceli

View file

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

View file

@ -4,13 +4,18 @@
image: image:
repository: ghcr.io/thomiceli/opengist repository: ghcr.io/thomiceli/opengist
pullPolicy: IfNotPresent pullPolicy: Always
tag: "" tag: ""
## - YAML config of Opengist https://github.com/thomiceli/opengist/blob/master/docs/configuration/cheat-sheet.md - ## ## - YAML config of Opengist https://github.com/thomiceli/opengist/blob/master/docs/configuration/cheat-sheet.md - ##
# Uses a ConfigMap for non-sensitive configuration # Uses a ConfigMap for non-sensitive configuration
config: {} config:
# log-output: stdout 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 # Uses a Secret for sensitive configuration
configSecret: {} configSecret: {}
@ -26,8 +31,8 @@ replicaCount: 1
strategy: strategy:
type: RollingUpdate type: RollingUpdate
rollingUpdate: rollingUpdate:
maxSurge: 25% maxSurge: 1
maxUnavailable: 25% maxUnavailable: 0
imagePullSecrets: [] imagePullSecrets: []
@ -87,6 +92,7 @@ persistence:
# storageClass: # storageClass:
accessMode: ReadWriteOnce accessMode: ReadWriteOnce
size: 10Gi size: 10Gi
annotations: {}
autoscaling: autoscaling:
enabled: false enabled: false