78dd37efc2
In Kubernetes 1.6, the deployment API version was changed from extensions/v1beta1 to apps/v1beta1 Change-Id: I14ee465de381d25866224b9eae3512f0b42588d3
37 lines
1.2 KiB
YAML
37 lines
1.2 KiB
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
name: etcd
|
|
spec:
|
|
replicas: {{ .Values.resources.etcd.replicas }}
|
|
revisionHistoryLimit: {{ .Values.upgrades.revision_history }}
|
|
strategy:
|
|
type: {{ .Values.upgrades.pod_replacement_strategy }}
|
|
{{ if eq .Values.upgrades.pod_replacement_strategy "RollingUpdate" }}
|
|
rollingUpdate:
|
|
maxUnavailable: {{ .Values.upgrades.rolling_update.max_unavailable }}
|
|
maxSurge: {{ .Values.upgrades.rolling_update.max_surge }}
|
|
{{ end }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: etcd
|
|
spec:
|
|
nodeSelector:
|
|
{{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }}
|
|
containers:
|
|
- name: etcd
|
|
image: {{ .Values.images.etcd }}
|
|
imagePullPolicy: {{ .Values.images.pull_policy }}
|
|
command:
|
|
- etcd
|
|
- --listen-client-urls
|
|
- http://0.0.0.0:{{ .Values.network.port }}
|
|
- --advertise-client-urls
|
|
- http://{{ .Values.network.host }}:{{ .Values.network.port }}
|
|
ports:
|
|
- containerPort: {{ .Values.network.port }}
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: {{ .Values.network.port }}
|