commit 598a0c2f48646c783db456f85a32af5f325b3652 Author: starnakin Date: Fri Feb 28 14:06:43 2025 +0100 add deployment 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