From 871e67b5d7215fd305eb2b5528a35fe26f63b169 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 17 Feb 2025 21:13:35 -0600 Subject: [PATCH] add nodeport --- .../applications/plex/templates/service.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 clusters/cl01tl/applications/plex/templates/service.yaml diff --git a/clusters/cl01tl/applications/plex/templates/service.yaml b/clusters/cl01tl/applications/plex/templates/service.yaml new file mode 100644 index 000000000..2a6b58e94 --- /dev/null +++ b/clusters/cl01tl/applications/plex/templates/service.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Service +metadata: + name: plex-external +spec: + selector: + app: my-app + type: NodePort + ports: + - name: http + port: 32400 + targetPort: 32400 + nodePort: 32400 + protocol: TCP