1
0
mirror of https://github.com/funkypenguin/geek-cookbook/ synced 2025-12-13 01:36:23 +00:00

Merge branch 'main' into fix-broken-links

This commit is contained in:
David Young
2023-02-13 16:47:30 +13:00
committed by GitHub
3 changed files with 0 additions and 3 deletions

View File

@@ -146,7 +146,6 @@ Thanks to [Sealed Secrets](/kubernetes/sealed-secrets/), we have a safe way of c
--dry-run=client \ --dry-run=client \
--from-literal=cloudflare_api_token=gobbledegook -o json \ --from-literal=cloudflare_api_token=gobbledegook -o json \
| kubeseal --cert <path to public cert> \ | kubeseal --cert <path to public cert> \
| kubectl create -f - \
> <path to repo>/external-dns/sealedsecret-cloudflare-api-token.yaml > <path to repo>/external-dns/sealedsecret-cloudflare-api-token.yaml
``` ```

View File

@@ -588,7 +588,6 @@ Based on our [flux deployment strategy](/kubernetes/deployment/flux/), we simply
--dry-run=client \ --dry-run=client \
--from-literal=location-of-rabbit=top-hat -o json \ --from-literal=location-of-rabbit=top-hat -o json \
| kubeseal --cert pub-cert.pem \ | kubeseal --cert pub-cert.pem \
| kubectl create -f - \
> <path to repo>/metallb/sealedsecret-magic-password.yaml > <path to repo>/metallb/sealedsecret-magic-password.yaml
``` ```

View File

@@ -36,7 +36,6 @@ Thanks to [Sealed Secrets](/kubernetes/sealed-secrets/), we have a safe way of c
--dry-run=client \ --dry-run=client \
--from-literal=api-token=gobbledegook -o json \ --from-literal=api-token=gobbledegook -o json \
| kubeseal --cert <path to public cert> \ | kubeseal --cert <path to public cert> \
| kubectl create -f - \
> <path to repo>/cert-manager/sealedsecret-cloudflare-api-token-secret.yaml > <path to repo>/cert-manager/sealedsecret-cloudflare-api-token-secret.yaml
``` ```