this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Maybe that's right

+23
+17
.taskfiles/flux/Taskfile.yaml
··· 2 2 version: "3" 3 3 4 4 tasks: 5 + bootstrap: 6 + desc: Bootstrap Flux into a Kubernetes cluster 7 + summary: | 8 + Args: 9 + cluster: Cluster to run command against (required) 10 + prompt: Bootstrap Flux into the '{{.cluster}}' cluster... continue? 11 + cmds: 12 + - kubectl --context {{.cluster}} apply --server-side --kustomize {{.KUBERNETES_DIR}}/{{.cluster}}/bootstrap/flux 13 + - sops --decrypt --in-place {{.KUBERNETES_DIR}}/base/flux-system/cluster-config/overlays/{{.cluster}}/cluster-secrets.sops.yaml 14 + - kubectl --context {{.cluster}} apply --server-side --kustomize {{.KUBERNETES_DIR}}/base/flux-system/cluster-config/overlays/{{.cluster}} 15 + - kubectl --context {{.cluster}} apply --server-side --kustomize {{.KUBERNETES_DIR}}/{{.cluster}}/flux/config 16 + - defer: sops --encrypt --in-place {{.KUBERNETES_DIR}}/base/flux-system/cluster-config/overlays/{{.cluster}}/cluster-secrets.sops.yaml 17 + preconditions: 18 + - { msg: "Argument (cluster) is required", sh: "test -n {{.cluster}}" } 19 + - { msg: "Cluster settings not found", sh: "test -f {{.KUBERNETES_DIR}}/base/flux-system/cluster-config/overlays/{{.cluster}}" } 20 + - { msg: "Cluster secrets not found", sh: "test -f {{.KUBERNETES_DIR}}/base/flux-system/cluster-config/overlays/{{.cluster}}/cluster-secrets.sops.yaml" } 21 + - { msg: "Unable to decrypt sops secret", sh: "sops --decrypt {{.KUBERNETES_DIR}}/{{.cluster}}/flux/vars/cluster-secrets.secret.sops.env" } 5 22 gr-sync: 6 23 desc: Sync all Flux GitRepositories 7 24 cmds:
+6
k8s/nebula/flux/config/kustomization.yaml
··· 1 + apiVersion: kustomize.config.k8s.io/v1beta1 2 + kind: Kustomization 3 + resources: 4 + - ./flux.yaml 5 + - ./cluster.yaml 6 + - ./shared.yaml