Add modules to znc
This commit is contained in:
parent
1b3be68ecb
commit
e4373a3457
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue