File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ apiVersion : v1
2+ kind : Secret
3+ metadata :
4+ name : manager-bootstrap-credentials
5+ namespace : system
6+ type : Opaque
7+ data :
8+ subscription-id : ${AZURE_SUBSCRIPTION_ID_B64:=""}
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ labels:
1010
1111resources :
1212- namespace.yaml
13+ - credentials.yaml
1314- ../crd
1415- ../rbac
1516- ../manager
@@ -19,6 +20,7 @@ resources:
1920patches :
2021- path : manager_image_patch.yaml
2122- path : manager_pull_policy.yaml
23+ - path : manager_credentials_patch.yaml
2224- path : manager_webhook_patch.yaml
2325- path : validatingwebhookcainjection_patch.yaml
2426- path : mutatingwebhookcainjection_patch.yaml
Original file line number Diff line number Diff line change 1+ apiVersion : apps/v1
2+ kind : Deployment
3+ metadata :
4+ name : controller-manager
5+ namespace : system
6+ spec :
7+ template :
8+ spec :
9+ containers :
10+ - name : manager
11+ env :
12+ - name : AZURE_SUBSCRIPTION_ID
13+ valueFrom :
14+ secretKeyRef :
15+ name : manager-bootstrap-credentials
16+ key : subscription-id
You can’t perform that action at this time.
0 commit comments