mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 16:57:29 +00:00
If implemented, flux diff kustomization will managed correctly sops managed dockerconfigjson secrets. Sops encrypted secret with stringData maps are supported too. Signed-off-by: Soule BA <soule@weave.works>
16 lines
349 B
YAML
16 lines
349 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
- ./deployment.yaml
|
|
- ./hpa.yaml
|
|
- ./service.yaml
|
|
- ./dockerconfigjson-sops-secret.yaml
|
|
- ./stringdata-secret.yaml
|
|
secretGenerator:
|
|
- files:
|
|
- token=token.encrypted
|
|
name: podinfo-token
|
|
- literals:
|
|
- username=admin
|
|
- password=1f2d1e2e67df
|
|
name: db-user-pass
|