mirror of
https://github.com/acedemand/kubernetes-essentials.git
synced 2021-08-24 18:29:57 +03:00
23 lines
477 B
YAML
23 lines
477 B
YAML
apiVersion: extensions/v1beta1
|
|
kind: ReplicaSet
|
|
metadata:
|
|
name: kuard
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: kuard
|
|
version: "1.0.0"
|
|
spec:
|
|
containers:
|
|
- image: gcr.io/kuar-demo/kuard-amd64:2
|
|
imagePullPolicy: IfNotPresent
|
|
name: kuard
|
|
ports:
|
|
- containerPort: 8080
|
|
name: http
|
|
protocol: TCP
|
|
resources: {}
|
|
dnsPolicy: ClusterFirst
|
|
restartPolicy: Always |