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

12 lines
151 B
YAML
Raw Normal View History

apiVersion: v1
kind: Pod
metadata:
name: nginx
labels:
env: production
tier: frontend
spec:
containers:
- name: nginx
image: nginx