# Vpn client daemonset Based on VPN configuration files are from After installation, it's needed to create `vpn-creds` secret with: ```bash $ cat <<-EOF > creds username password EOF $ kubectl --context=gullfaxi --namespace vpn \ create secret generic vpn-creds \ --from-file=creds=./creds ``` To disable: ```bash kubectl --context=gullfaxi label nodes gullfaxi vpn- ``` To enable: ```bash kubectl --context=gullfaxi label nodes gullfaxi vpn="" ```