2017-12-06 01:06:52 +00:00
|
|
|
---
|
|
|
|
kind: DaemonSet
|
|
|
|
apiVersion: extensions/v1beta1
|
|
|
|
metadata:
|
|
|
|
name: contiv-etcd-proxy
|
|
|
|
namespace: {{ system_namespace }}
|
|
|
|
labels:
|
|
|
|
k8s-app: contiv-etcd-proxy
|
|
|
|
spec:
|
|
|
|
selector:
|
|
|
|
matchLabels:
|
|
|
|
k8s-app: contiv-etcd-proxy
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
k8s-app: contiv-etcd-proxy
|
|
|
|
annotations:
|
|
|
|
scheduler.alpha.kubernetes.io/critical-pod: ''
|
|
|
|
spec:
|
|
|
|
hostNetwork: true
|
|
|
|
hostPID: true
|
|
|
|
containers:
|
|
|
|
- name: contiv-etcd-proxy
|
|
|
|
image: {{ contiv_etcd_image_repo }}:{{ contiv_etcd_image_tag }}
|
|
|
|
env:
|
|
|
|
- name: ETCD_LISTEN_CLIENT_URLS
|
2017-12-14 02:35:12 +00:00
|
|
|
value: 'http://127.0.0.1:{{ contiv_etcd_listen_port }}'
|
2017-12-06 01:06:52 +00:00
|
|
|
- name: ETCD_PROXY
|
|
|
|
value: "on"
|
|
|
|
- name: ETCD_INITIAL_CLUSTER
|
2017-12-14 02:35:12 +00:00
|
|
|
value: '{{ contiv_etcd_endpoints }}'
|