From e596578cdfa4c834d52f02b733e3e0754f65e548 Mon Sep 17 00:00:00 2001 From: Simple_Not <44047940+moonbaseDelta@users.noreply.github.com> Date: Mon, 19 Jun 2023 23:51:17 +1000 Subject: [PATCH] test helm --- manifests/deployments/hw-hw.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 manifests/deployments/hw-hw.yaml diff --git a/manifests/deployments/hw-hw.yaml b/manifests/deployments/hw-hw.yaml new file mode 100644 index 0000000..92ab220 --- /dev/null +++ b/manifests/deployments/hw-hw.yaml @@ -0,0 +1,20 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: helloworld + namespace: vdk2ch +spec: + selector: + matchLabels: + app: helloworld + replicas: 1 # tells deployment to run 1 pods matching the template + template: # create pods using pod definition in this template + metadata: + labels: + app: helloworld + spec: + containers: + - name: helloworld + image: karthequian/helloworld:latest + ports: + - containerPort: 80 \ No newline at end of file