working on kubernetes with tls and tailscale

This commit is contained in:
2025-01-13 22:45:14 -07:00
parent 92b2bb78c0
commit 7a8e17d79d
5 changed files with 15 additions and 11 deletions

23
kubernetes/readme.md Normal file
View File

@@ -0,0 +1,23 @@
# sources
nix instructions: <https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/cluster/k3s/README.md>
## tailscale operator
```
helm repo add tailscale https://pkgs.tailscale.com/helmcharts
helm repo update
helm upgrade \
--install \
tailscale-operator \
tailscale/tailscale-operator \
--namespace=tailscale \
--create-namespace \
--set-string oauth.clientId="<OAauth client ID>" \
--set-string oauth.clientSecret="<OAuth client secret>" \
--wait
```