73 lines
1.6 KiB
YAML
73 lines
1.6 KiB
YAML
apiVersion: helm.toolkit.fluxcd.io/v2beta2
|
|
kind: HelmRelease
|
|
metadata:
|
|
name: code
|
|
namespace: dev
|
|
spec:
|
|
interval: 5m
|
|
chart:
|
|
spec:
|
|
chart: app-template
|
|
version: 1.3.x
|
|
sourceRef:
|
|
kind: HelmRepository
|
|
name: bjws-charts
|
|
namespace: flux-system
|
|
|
|
values:
|
|
# Add init container for pulling znc modules and putting them into the modules directory
|
|
# initContainers:
|
|
# pull-module-source:
|
|
# image: alpine:latest
|
|
# command:
|
|
# - "sh"
|
|
# - "-c"
|
|
# - "sed -i -e's/ main/ main contrib non-free/g' /etc/apt/sources.list &&"
|
|
# volumeMounts:
|
|
# - mountPath: /znc-data
|
|
# name: config
|
|
|
|
image:
|
|
repository: codercom/code-server
|
|
tag: "4.21.2"
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 8080
|
|
|
|
probes:
|
|
liveness:
|
|
enabled: false
|
|
|
|
ingress:
|
|
main:
|
|
enabled: true
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
|
traefik.ingress.kubernetes.io/router.middlewares: traefik-authentik@kubernetescrd
|
|
hosts:
|
|
- host: &host "code.${SECRET_NEW_DOMAIN}"
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls:
|
|
- hosts:
|
|
- *host
|
|
|
|
# persistence:
|
|
# config:
|
|
# enabled: true
|
|
# type: hostPath
|
|
# hostPath: /mnt/MainPool/Kubernetes/znc
|
|
# mountPath: /znc-data
|
|
|
|
resources:
|
|
requests:
|
|
cpu: 1m
|
|
memory: 4Mi
|
|
# limits:
|
|
# memory: 200Mi
|