mirror of https://github.com/fluxcd/flux2.git
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			27 lines
		
	
	
		
			851 B
		
	
	
	
		
			YAML
		
	
			
		
		
	
	
			27 lines
		
	
	
		
			851 B
		
	
	
	
		
			YAML
		
	
---
 | 
						|
apiVersion: apps/v1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: credentials-sync-eventhub
 | 
						|
  namespace: flux-system
 | 
						|
spec:
 | 
						|
  template:
 | 
						|
    spec:
 | 
						|
      containers:
 | 
						|
        - name: sync
 | 
						|
          image: mcr.microsoft.com/azure-cli
 | 
						|
          env:
 | 
						|
            - name: RECONCILE_SH
 | 
						|
              value: |-
 | 
						|
                reconcile() {
 | 
						|
                  echo "Starting JWT token sync -- $(date)"
 | 
						|
                  echo "Logging into Azure"
 | 
						|
                  az login --identity
 | 
						|
                  echo "Getting JWT token"
 | 
						|
                  token=$(az account get-access-token --resource https://eventhubs.azure.net |jq -r .accessToken)
 | 
						|
                  echo "Creating secret: ${KUBE_SECRET}"
 | 
						|
                  apply-secret "${KUBE_SECRET}" ${token} "${ADDRESS}"
 | 
						|
                  echo "Finished JWT token sync -- $(date)"
 | 
						|
                  echo
 | 
						|
                }                
 |