0

I am trying to add at this --server argument three https endpoint to make it HA. Is that possible?

kubectl config set-cluster Zarsk \
    --certificate-authority=ca.pem \
    --embed-certs=true \
    --server=https://${k8s_PUBLIC_ADDRESS}:6443 \
    --kubeconfig=${instance}.kubeconfig
manzion_111
  • 139
  • 1
  • 1
  • 7

1 Answers1

2

No, only a single connection URL is supported

Jordan Liggitt
  • 16,933
  • 2
  • 56
  • 44