Compare commits
2 Commits
4920d39ee3
...
22188b3d5a
Author | SHA1 | Date |
---|---|---|
Renovate Bot | 22188b3d5a | |
SeanOMik | 247064370f |
|
@ -1,4 +1,3 @@
|
||||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/bjw-s/helm-charts/main/charts/other/app-template/schemas/helmrelease-helm-v2beta2.schema.json
|
|
||||||
apiVersion: helm.toolkit.fluxcd.io/v2
|
apiVersion: helm.toolkit.fluxcd.io/v2
|
||||||
kind: HelmRelease
|
kind: HelmRelease
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -8,44 +7,57 @@ spec:
|
||||||
chart:
|
chart:
|
||||||
spec:
|
spec:
|
||||||
chart: app-template
|
chart: app-template
|
||||||
version: 3.5.1
|
version: 3.5.x
|
||||||
sourceRef:
|
sourceRef:
|
||||||
kind: HelmRepository
|
kind: HelmRepository
|
||||||
name: bjws-charts
|
name: bjws-charts
|
||||||
namespace: flux-system
|
namespace: flux-system
|
||||||
|
|
||||||
values:
|
values:
|
||||||
controllers:
|
image:
|
||||||
main:
|
repository: vaultwarden/server
|
||||||
containers:
|
tag: 1.32.3
|
||||||
main:
|
|
||||||
image:
|
|
||||||
repository: vaultwarden/server
|
|
||||||
tag: 1.32.3
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
app:
|
main:
|
||||||
controller: main
|
|
||||||
|
|
||||||
ports:
|
ports:
|
||||||
http:
|
http:
|
||||||
port: 80
|
port: 80
|
||||||
|
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
ingress:
|
ingress:
|
||||||
main:
|
main:
|
||||||
|
enabled: true
|
||||||
annotations:
|
annotations:
|
||||||
cert-manager.io/cluster-issuer: letsencrypt-production
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
||||||
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||||
hosts:
|
hosts:
|
||||||
- host: "bitwarden.${SECRET_NEW_DOMAIN}"
|
- host: &host "bitwarden.${SECRET_NEW_DOMAIN}"
|
||||||
paths:
|
paths:
|
||||||
- path: /
|
- path: /
|
||||||
service:
|
pathType: Prefix
|
||||||
identifier: app
|
tls:
|
||||||
port: http
|
- hosts:
|
||||||
|
- *host
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
data:
|
data:
|
||||||
existingClaim: vaultwarden
|
existingClaim: vaultwarden
|
||||||
globalMounts:
|
globalMounts:
|
||||||
- path: /data
|
- path: /data
|
||||||
|
# data:
|
||||||
|
# enabled: true
|
||||||
|
# type: hostPath
|
||||||
|
# hostPath: /mnt/MainPool/Kubernetes/vaultwarden
|
||||||
|
# mountPath: /data
|
||||||
|
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 1m
|
||||||
|
memory: 50Mi
|
||||||
|
|
||||||
|
limits:
|
||||||
|
memory: 200Mi
|
Loading…
Reference in New Issue