k3s-cluster/cluster/apps/irc/znc/helm-release.yaml

75 lines
1.7 KiB
YAML
Raw Normal View History

2023-04-13 13:12:47 -04:00
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: znc
namespace: irc
spec:
interval: 5m
chart:
spec:
chart: app-template
version: 1.3.x
sourceRef:
kind: HelmRepository
name: bjws-charts
namespace: flux-system
values:
podLabels:
needsAuthentik: "yes"
2023-04-13 14:10:26 -04:00
# Add init container for pulling znc modules and putting them into the modules directory
initContainers:
2023-04-13 14:29:21 -04:00
pull-module-source:
2023-04-13 14:10:26 -04:00
image: alpine:latest
2023-04-13 20:36:56 -04:00
command:
- "sh"
- "-c"
2023-06-15 00:30:40 -04:00
- "rm -f /znc-data/modules/ctcp_notifier.*; wget https://raw.githubusercontent.com/Zarthus/znc-modules/master/ctcp_notifier.cpp -P /znc-data/modules"
2023-04-13 20:36:56 -04:00
volumeMounts:
- mountPath: /znc-data
name: config
2023-04-13 14:10:26 -04:00
2023-04-13 13:12:47 -04:00
image:
repository: ghcr.io/seanomik/docker-znc-ldap
2023-04-13 13:12:47 -04:00
tag: latest
2023-04-13 14:10:26 -04:00
2023-04-13 13:12:47 -04:00
service:
main:
ports:
http:
port: 6501
2023-04-13 14:10:26 -04:00
2023-04-13 13:12:47 -04:00
probes:
liveness:
enabled: false
2023-04-13 14:10:26 -04:00
2023-04-13 13:12:47 -04:00
ingress:
main:
enabled: true
annotations:
cert-manager.io/cluster-issuer: letsencrypt-production
2023-04-13 13:12:47 -04:00
traefik.ingress.kubernetes.io/router.entrypoints: websecure
hosts:
- host: &host "znc.${SECRET_NEW_DOMAIN}"
paths:
- path: /
pathType: Prefix
tls:
- hosts:
- *host
secretName: wildcard-main-tls
2023-04-13 14:10:26 -04:00
2023-04-13 13:12:47 -04:00
persistence:
config:
enabled: true
type: hostPath
hostPath: /mnt/MainPool/Kubernetes/znc
2023-04-13 20:36:56 -04:00
mountPath: /znc-data
2023-04-13 13:12:47 -04:00
resources:
requests:
cpu: 1m
memory: 4Mi
limits:
2023-04-13 14:21:22 -04:00
memory: 200Mi