From 4d6612b20334cb1d516346122749572abb4e237d Mon Sep 17 00:00:00 2001 From: Martyn Date: Fri, 21 Apr 2023 12:14:29 +0000 Subject: [PATCH] Expose home sonarr to drache --- jelly/deploy.yaml | 3 +++ jelly/service-sonarr.yaml | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 jelly/service-sonarr.yaml diff --git a/jelly/deploy.yaml b/jelly/deploy.yaml index 78213f8..10f95d8 100644 --- a/jelly/deploy.yaml +++ b/jelly/deploy.yaml @@ -32,5 +32,8 @@ spec: - containerPort: 8096 name: jelly protocol: TCP + - containerPort: 8989 + name: sonarr + protocol: TCP resources: {} status: {} diff --git a/jelly/service-sonarr.yaml b/jelly/service-sonarr.yaml new file mode 100644 index 0000000..9165016 --- /dev/null +++ b/jelly/service-sonarr.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + labels: + app: ssh + name: remote-sonarr +spec: + ports: + - port: 8096 + selector: + app: ssh + type: ClusterIP