24 lines
328 B
YAML
24 lines
328 B
YAML
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod1
|
||
|
labels:
|
||
|
tier: frontend
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: hello1
|
||
|
image: gcr.io/google-samples/hello-app:2.0
|
||
|
|
||
|
---
|
||
|
|
||
|
apiVersion: v1
|
||
|
kind: Pod
|
||
|
metadata:
|
||
|
name: pod2
|
||
|
labels:
|
||
|
tier: frontend
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: hello2
|
||
|
image: gcr.io/google-samples/hello-app:1.0
|