Add modules to znc

This commit is contained in:
SeanOMik 2023-04-13 14:10:26 -04:00
parent 1b3be68ecb
commit e4373a3457
Signed by: SeanOMik
GPG Key ID: 568F326C7EB33ACB
1 changed files with 12 additions and 1 deletions

View File

@ -15,21 +15,31 @@ spec:
namespace: flux-system namespace: flux-system
values: values:
# Add init container for pulling znc modules and putting them into the modules directory
initContainers:
- name: pull-module-source
image: alpine:latest
command: ["sh", "-c", "wget https://raw.githubusercontent.com/Zarthus/znc-modules/master/ctcp_notifier.cpp -P /config/modules"]
image: image:
repository: linuxserver/znc repository: znc
tag: latest tag: latest
env: env:
TZ: America/New_York TZ: America/New_York
PGID: "1000" PGID: "1000"
PUID: "1000" PUID: "1000"
service: service:
main: main:
ports: ports:
http: http:
port: 6501 port: 6501
probes: probes:
liveness: liveness:
enabled: false enabled: false
ingress: ingress:
main: main:
enabled: true enabled: true
@ -45,6 +55,7 @@ spec:
- hosts: - hosts:
- *host - *host
secretName: wildcard-main-tls secretName: wildcard-main-tls
persistence: persistence:
config: config:
enabled: true enabled: true