kubernetes-hands-on/06-label-annotation/02-nginx.yml

13 lines
159 B
YAML
Raw Permalink Normal View History

2019-05-14 22:04:12 +06:00
---
apiVersion: v1
kind: Pod
metadata:
name: nginx
labels:
env: production
tier: frontend
spec:
containers:
2019-05-14 22:04:12 +06:00
- name: nginx
image: nginx