this repo has no description
0
fork

Configure Feed

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

build: add make target to apply secrets only

+10 -2
+9 -2
Makefile
··· 1 1 .POSIX: 2 - .PHONY: default infra cluster system platform apps edit-vault test update 2 + .PHONY: default infra cluster system platform apps secrets edit-secrets test update 3 3 4 4 # TODO multiple clusters 5 5 export KUBECONFIG = $(shell pwd)/cluster/kubeconfig.yaml ··· 34 34 apps: 35 35 kubectl apply --server-side=true --namespace argocd --filename apps/ 36 36 37 - edit-vault: 37 + secrets: 38 + cd cluster && ansible-playbook \ 39 + --inventory inventory.yml \ 40 + --ask-vault-pass \ 41 + --tags secrets \ 42 + main.yml 43 + 44 + edit-secrets: 38 45 ansible-vault edit ./cluster/roles/secrets/vars/main.yml 39 46 40 47 test:
+1
cluster/main.yml
··· 7 7 - hosts: localhost 8 8 roles: 9 9 - role: secrets 10 + tags: secrets 10 11 - role: bootstrap