euh§
This commit is contained in:
2025-12-07 02:44:28 +01:00
parent 6d328bb1a1
commit 9561abac77
9 changed files with 139 additions and 1 deletions

View File

@@ -0,0 +1,37 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ngircd
labels:
app.kubernetes.io/name: ngircd
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: ngircd
template:
metadata:
labels:
app.kubernetes.io/name: ngircd
spec:
volumes:
- name: config
nfs:
server: 192.168.0.99
path: /mnt/test1/media/config/ngircd/
containers:
- name: ngircd
image: lscr.io/linuxserver/ngircd:latest
env:
- name: PUID
value: "1000"
- name: PGID
value: "1000"
- name: TZ
value: Etc/UTC
ports:
- containerPort: 6667
volumeMounts:
- name: config
mountPath: /config

View File

@@ -0,0 +1,16 @@
apiVersion: v1
kind: Service
metadata:
name: svc-ngircd
spec:
type: NodePort
selector:
app.kubernetes.io/name: ngircd
ports:
- name: irc
protocol: TCP
targetPort: 6667
port: 36667