mirror of
https://github.com/acedemand/kubernetes-essentials.git
synced 2021-08-24 18:29:57 +03:00
21 lines
370 B
YAML
21 lines
370 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
labels:
|
|
run: kuard
|
|
name: kuard
|
|
internalVersion: 0.0.2
|
|
name: kuard
|
|
spec:
|
|
containers:
|
|
- image: gcr.io/kuar-demo/kuard-amd64:1
|
|
imagePullPolicy: IfNotPresent
|
|
name: kuard
|
|
ports:
|
|
- containerPort: 8080
|
|
name: http
|
|
protocol: TCP
|
|
resources: {}
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Never
|