27ec548b88
Cleaned up deprecated APIs: apps/v1beta1 apps/v1beta2 extensions/v1beta1 for ds,deploy,rs Add workaround for deploying helm using incompatible deployment manifest. Change-Id: I78b36741348f47a999df3841ee63cf4e6f377830
38 lines
1 KiB
Django/Jinja
38 lines
1 KiB
Django/Jinja
---
|
|
kind: DaemonSet
|
|
apiVersion: apps/v1
|
|
metadata:
|
|
name: contiv-etcd-proxy
|
|
namespace: kube-system
|
|
labels:
|
|
k8s-app: contiv-etcd-proxy
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
k8s-app: contiv-etcd-proxy
|
|
template:
|
|
metadata:
|
|
labels:
|
|
k8s-app: contiv-etcd-proxy
|
|
spec:
|
|
priorityClassName: system-node-critical
|
|
hostNetwork: true
|
|
dnsPolicy: ClusterFirstWithHostNet
|
|
hostPID: true
|
|
affinity:
|
|
nodeAffinity:
|
|
requiredDuringSchedulingIgnoredDuringExecution:
|
|
nodeSelectorTerms:
|
|
- matchExpressions:
|
|
- key: node-role.kubernetes.io/master
|
|
operator: DoesNotExist
|
|
containers:
|
|
- name: contiv-etcd-proxy
|
|
image: {{ contiv_etcd_image_repo }}:{{ contiv_etcd_image_tag }}
|
|
env:
|
|
- name: ETCD_LISTEN_CLIENT_URLS
|
|
value: 'http://127.0.0.1:{{ contiv_etcd_listen_port }}'
|
|
- name: ETCD_PROXY
|
|
value: "on"
|
|
- name: ETCD_INITIAL_CLUSTER
|
|
value: '{{ contiv_etcd_endpoints }}'
|