This required upgrading to golang 1.13.4. After running make I ran sudo cp /home/ubuntu/bin/kustomize /usr/local/bin to make it accessible to the system.
✗ kustomize version
Version: {KustomizeVersion:unknown GitCommit:$Format:%H$ BuildDate:1970-01-01T00:00:00Z GoOs:linux GoArch:amd64}
Nice build date...
I use sops to encrypt the sample secrets.enc.yaml with CAT and DOG. I'm able to decrypt it fine with sops --decrypt secrets.enc.yaml > secrets.yaml. I add this the to kustomization.yaml:
---
apiVersion: kustomize-sops/v1
kind: SopsSecret
name: my-secret
namespace: bar
source: secrets.enc.yaml
metadata:
name: not-used
keys:
- CAT
Then I run kustomize build --enable_alpha_plugins . > test.yaml but there are no secrets in the test.yaml file. No errors, it just ignores the secret.
This required upgrading to golang 1.13.4. After running
makeI ransudo cp /home/ubuntu/bin/kustomize /usr/local/binto make it accessible to the system.Nice build date...
I use sops to encrypt the sample
secrets.enc.yamlwith CAT and DOG. I'm able to decrypt it fine withsops --decrypt secrets.enc.yaml > secrets.yaml. I add this the tokustomization.yaml:Then I run
kustomize build --enable_alpha_plugins . > test.yamlbut there are no secrets in the test.yaml file. No errors, it just ignores the secret.