diff --git a/kubernetes/apps/default/libreddit/app/helmrelease.yaml b/kubernetes/apps/default/libreddit/app/helmrelease.yaml index 3e2bb9ab7..6b4ae5363 100644 --- a/kubernetes/apps/default/libreddit/app/helmrelease.yaml +++ b/kubernetes/apps/default/libreddit/app/helmrelease.yaml @@ -10,7 +10,7 @@ spec: chart: spec: chart: app-template - version: 1.5.1 + version: 2.0.3 sourceRef: kind: HelmRepository name: bjw-s @@ -27,31 +27,38 @@ spec: uninstall: keepHistory: false values: - controller: - strategy: RollingUpdate - image: - repository: ghcr.io/auricom/libreddit - tag: 0.30.1@sha256:4106b2aa4d9ce76f16ea9db1aa75ace2e9c80c067f698dad2f92c68c7cd94c30 + controllers: + main: + strategy: RollingUpdate + containers: + main: + image: + repository: ghcr.io/auricom/libreddit + tag: 0.30.1@sha256:4106b2aa4d9ce76f16ea9db1aa75ace2e9c80c067f698dad2f92c68c7cd94c30 + probes: + liveness: &probes + enabled: true + custom: true + spec: + httpGet: + path: /settings + port: &port 8080 + initialDelaySeconds: 0 + periodSeconds: 10 + timeoutSeconds: 1 + failureThreshold: 3 + readiness: *probes + startup: + enabled: false + resources: + requests: + cpu: 50m + memory: 256Mi service: main: ports: http: - port: &port 8080 - probes: - liveness: &probes - enabled: true - custom: true - spec: - httpGet: - path: /settings port: *port - initialDelaySeconds: 0 - periodSeconds: 10 - timeoutSeconds: 1 - failureThreshold: 3 - readiness: *probes - startup: - enabled: false ingress: main: enabled: true @@ -64,11 +71,9 @@ spec: - host: &host "{{ .Release.Name }}.${SECRET_CLUSTER_DOMAIN}" paths: - path: / - pathType: Prefix + service: + name: main + port: http tls: - hosts: - *host - resources: - requests: - cpu: 50m - memory: 256Mi