Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: kube-apiserver config only has single etcd server endpoint (#179)
**Before** ``` spec: containers: - command: - kube-apiserver - ... - --etcd-servers=https://ip-10-1-2-3.k8s.cluster:2379 ``` **After** ``` spec: containers: - command: - kube-apiserver - ... - --etcd-servers=https://ip-10-1-2-3.k8s.cluster:2379,https://ip-10-4-5-6.k8s.cluster:2379,https://ip-10-7-8-9.k8s.cluster:2379 ``` ```
- Loading branch information