File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
modules/ROOT/pages/kubernetes/operations Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -101,13 +101,26 @@ kubectl create secret generic awscreds --from-file=credentials=/path/to/your/cre
101101
102102[.include-with-azure]
103103======
104- . Create a credentials file in the following format:
104+ . Create a credentials file in the following format (before 2025.06) :
105105+
106106[source, properties, role='noheader']
107107----
108108AZURE_STORAGE_ACCOUNT_NAME=<your-azure-storage-account-name>
109109AZURE_STORAGE_ACCOUNT_KEY=<your-azure-storage-account-key>
110110----
111+ +
112+ Starting with 2025.06, update your credentials secret as follows:
113+ +
114+ [source, properties, role='noheader']
115+ ----
116+ # Azure credentials file
117+ AZURE_STORAGE_ACCOUNT=<your_account>
118+ AZURE_STORAGE_KEY=<your_key>
119+ AZURE_CLIENT_ID=<your_service_principal_id>
120+ AZURE_CLIENT_SECRET=<your_service_principal_secret>
121+ AZURE_TENANT_ID=<your_tenant_id>
122+ ----
123+
111124. Create the secret named `azurecred` via the credentials file:
112125+
113126[source, shell, role='noheader']
You can’t perform that action at this time.
0 commit comments