Tolerate failures when setting MTU
[csit.git] / resources / templates / kubernetes / pods / etcdv3.yaml
1 apiVersion: v1
2 kind: Pod
3 metadata:
4   name: etcdv3
5   namespace: csit
6 spec:
7   hostNetwork: true
8   containers:
9     - image: quay.io/coreos/etcd:v3.0.16
10       name: etcdv3
11       command:
12         - /usr/local/bin/etcd
13         - --advertise-client-urls
14         - http://0.0.0.0:22379
15         - --listen-client-urls
16         - http://0.0.0.0:22379
17         - --listen-peer-urls
18         - http://0.0.0.0:22380
19       ports:
20         - containerPort: 22379
21           hostPort: 22379
22           name: serverport
23       env:
24         - name: ETCDCTL_API
25           value: "3"