mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-16 20:51:47 +00:00
To use JWT to communicate with Azure eventhub we need to renew the JWT credentials from time to time. This example yaml helps out with that * Supports both deployment and cronjob based renewal * static service principal * aad-pod-identity in azure Signed-off-by: Edvin Norling <edvin.norling@xenit.se>
21 lines
361 B
YAML
21 lines
361 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namePrefix: jwt-
|
|
commonLabels:
|
|
app: jwt-eventhub-credentials-sync
|
|
|
|
namespace: flux-system
|
|
|
|
bases:
|
|
- ../_base
|
|
resources:
|
|
- secret-azure-credentials.yaml
|
|
|
|
patchesStrategicMerge:
|
|
- config-patches.yaml
|
|
- kubectl-patch.yaml
|
|
- reconcile-patch.yaml
|
|
|
|
configurations:
|
|
- kustomizeconfig.yaml
|