blob: 66c1a57fad03d5ae64e374f906bfcdc4d459c75b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
apiVersion: v1
kind: Pod
metadata:
name: etcdv3-server
namespace: csit
spec:
hostNetwork: true
containers:
- image: quay.io/coreos/etcd:v3.0.16
name: etcdv3
command:
- /usr/local/bin/etcd
- --advertise-client-urls
- http://0.0.0.0:22379
- --listen-client-urls
- http://0.0.0.0:22379
- --listen-peer-urls
- http://0.0.0.0:22380
ports:
- containerPort: 22379
hostPort: 22379
name: serverport
env:
- name: ETCDCTL_API
value: "3"
|