k8s/000-scripts/vault-k8s-auth-endpoint.sh

12 lines
337 B
Bash
Raw Normal View History

2022-07-02 18:37:33 +00:00
#!/bin/bash
HOST_IP=$(ip addr show eth0 | grep -Po 'inet \K[\d.]+')
kubectl config view --raw --minify --flatten --output='jsonpath={.clusters[].cluster.certificate-authority-data}' | base64 --decode > ca.crt
vault write auth/kubernetes/config \
kubernetes_host=https://${HOST_IP}:6443 \
kubernetes_ca_cert=@ca.crt
2022-07-02 18:41:57 +00:00
2022-07-02 18:37:33 +00:00
rm ca.crt