diff options
author | 2025-09-24 22:16:00 -0700 | |
---|---|---|
committer | 2025-09-24 22:28:21 -0700 | |
commit | ae7e47b6cc9b3ae2e690c5b398a8f90d82c86a5a (patch) | |
tree | b5b519764dceb4db86b535889638e383f8f98a2f /rpi5/soju/service.yaml | |
parent | 67e96593734ef2ea9701a4d05b956271024d95bd (diff) | |
download | anshulg-cluster-ae7e47b6cc9b3ae2e690c5b398a8f90d82c86a5a.tar.gz anshulg-cluster-ae7e47b6cc9b3ae2e690c5b398a8f90d82c86a5a.tar.zst anshulg-cluster-ae7e47b6cc9b3ae2e690c5b398a8f90d82c86a5a.zip |
Add irc service for tailscale
Diffstat (limited to '')
-rw-r--r-- | rpi5/soju/service.yaml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rpi5/soju/service.yaml b/rpi5/soju/service.yaml index c8679ee9..4dbfa8be 100644 --- a/rpi5/soju/service.yaml +++ b/rpi5/soju/service.yaml @@ -10,3 +10,17 @@ spec: port: 6697 targetPort: 6697 type: LoadBalancer +--- +apiVersion: v1 +kind: Service +metadata: + name: irc +spec: + selector: + app: soju + ports: + - protocol: TCP + port: 6697 + targetPort: 6697 + type: LoadBalancer + loadBalancerClass: tailscale |