From 343569a0250819f97617fc683e026c1829d3f5df Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 15 Oct 2021 12:49:18 -0400 Subject: [PATCH] Add static Pod.yaml to templates (#4055) --- 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