From 7406ac05851561d16f3dee389e2331ad7b7f498b Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 15 Oct 2021 11:15:44 -0400 Subject: [PATCH] Add static Pod.yaml to templates Signed-off-by: Sebastian Malton --- templates/create-resource/Pod.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 templates/create-resource/Pod.yaml diff --git a/templates/create-resource/Pod.yaml b/templates/create-resource/Pod.yaml new file mode 100644 index 0000000000..7a1229eb33 --- /dev/null +++ b/templates/create-resource/Pod.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Pod +metadata: + name: static-web + labels: + role: myrole +spec: + containers: + - name: web + image: nginx + ports: + - name: web + containerPort: 80 + protocol: TCP