From 5523afe7fe0d5a3166f0ce9c10a5c7defea2defb Mon Sep 17 00:00:00 2001 From: Gareth Williams Date: Sun, 25 Jun 2023 17:02:08 +0100 Subject: [PATCH] Add manifest.yaml --- manifest.yaml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 manifest.yaml diff --git a/manifest.yaml b/manifest.yaml new file mode 100644 index 0000000..10c98bf --- /dev/null +++ b/manifest.yaml @@ -0,0 +1,39 @@ +kind: Service +apiVersion: v1 +metadata: + name: nginx + labels: + app: nginx +spec: + selector: + app: nginx + ports: + - port: 80 + protocol: TCP + targetPort: 80 + type: ClusterIP + +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: nginx + labels: + app: nginx +spec: + replicas: 1 + selector: + matchLabels: + app: nginx + template: + metadata: + labels: + app: nginx + spec: + containers: + - name: nginx + image: nginx:latest + imagePullPolicy: Always + ports: + - containerPort: 80 + protocol: TCP \ No newline at end of file