Add IRC MOTD file

This commit is contained in:
Andrew Stoltz
2026-04-16 19:29:43 -05:00
parent 929449c55c
commit f8eb946704

View File

@@ -225,15 +225,24 @@ data:
trusted-ca-file "/etc/ssl/certs/ca-certificates.crt"; trusted-ca-file "/etc/ssl/certs/ca-certificates.crt";
} }
/* Allow plaintext for server-to-server links (Anope is internal) */ /* Allow plaintext for server-to-server links (Anope is internal) */
plaintext-policy { plaintext-policy {
server allow; server allow;
} }
} }
--- ircd.motd: |
# Anope configuration template (passwords replaced by placeholders) - BlueJay IRC -
apiVersion: v1 Welcome to BlueJayIRC on iamworkin.lan.
kind: ConfigMap
Web IRC: https://webirc.iamworkin.lan
Channels: #general, #ops, #alerts
Keep it keyboard-first, practical, and kind.
Managed from bluejay-infra via ArgoCD.
---
# Anope configuration template (passwords replaced by placeholders)
apiVersion: v1
kind: ConfigMap
metadata: metadata:
name: anope-config-template name: anope-config-template
namespace: irc namespace: irc
@@ -554,14 +563,18 @@ spec:
name: irc-tls name: irc-tls
- containerPort: 8067 - containerPort: 8067
name: services-link name: services-link
volumeMounts: volumeMounts:
- name: injected-config - name: injected-config
mountPath: /app/conf/unrealircd.conf mountPath: /app/conf/unrealircd.conf
subPath: unrealircd.conf subPath: unrealircd.conf
- name: unrealircd-data - name: unrealircd-config-template
mountPath: /app/data mountPath: /app/conf/ircd.motd
- name: irc-tls subPath: ircd.motd
mountPath: /app/conf/tls readOnly: true
- name: unrealircd-data
mountPath: /app/data
- name: irc-tls
mountPath: /app/conf/tls
resources: resources:
requests: requests:
memory: 64Mi memory: 64Mi