27 lines
687 B
Markdown
27 lines
687 B
Markdown
|
# Bootstrap
|
||
|
|
||
|
## Flux
|
||
|
|
||
|
### Install Flux
|
||
|
|
||
|
```sh
|
||
|
kubectl apply --server-side --kustomize ./kubernetes/bootstrap/flux
|
||
|
```
|
||
|
|
||
|
### Apply Cluster Configuration
|
||
|
|
||
|
_These cannot be applied with `kubectl` in the regular fashion due to be encrypted with sops_
|
||
|
|
||
|
```sh
|
||
|
sops --decrypt kubernetes/bootstrap/flux/age-key.sops.yaml | kubectl apply -f -
|
||
|
sops --decrypt kubernetes/bootstrap/flux/git-deploy-key.sops.yaml | kubectl apply -f -
|
||
|
sops --decrypt kubernetes/flux/vars/cluster-secrets.sops.yaml | kubectl apply -f -
|
||
|
kubectl apply -f kubernetes/flux/vars/cluster-settings.yaml
|
||
|
```
|
||
|
|
||
|
### Kick off Flux applying this repository
|
||
|
|
||
|
```sh
|
||
|
kubectl apply --server-side --kustomize ./kubernetes/flux/config
|
||
|
```
|