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