mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-22 21:04:54 +07:00
11 lines
254 B
Plaintext
11 lines
254 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
PEER="${1}"
|
||
|
|
||
|
export KUBECONFIG=./metal/kubeconfig.yaml
|
||
|
|
||
|
kubectl -n wireguard exec -it deployment/wireguard -- /app/show-peer "${PEER}"
|
||
|
kubectl -n wireguard exec -it deployment/wireguard -- cat "/config/peer_${PEER}/peer_${PEER}.conf"
|