From 598a0c2f48646c783db456f85a32af5f325b3652 Mon Sep 17 00:00:00 2001 From: starnakin Date: Fri, 28 Feb 2025 14:06:43 +0100 Subject: [PATCH] add deployment --- deployment.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 deployment.yaml diff --git a/deployment.yaml b/deployment.yaml new file mode 100644 index 0000000..182a5f7 --- /dev/null +++ b/deployment.yaml @@ -0,0 +1,32 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: playground-deployment + labels: + app: playground +spec: + replicas: 1 + selector: + matchLabels: + app: playground + template: + metadata: + labels: + app: playground + spec: + containers: + - name: playground + image: wil42/playground:v1 +--- +apiVersion: v1 +kind: Service +metadata: + name: playground-service +spec: + type: NodePort + selector: + app: playground + ports: + - port: 8888 + targetPort: 8888 + nodePort: 8888