Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion modules/ROOT/pages/kubernetes/operations/backup-restore.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,26 @@ kubectl create secret generic awscreds --from-file=credentials=/path/to/your/cre

[.include-with-azure]
======
. Create a credentials file in the following format:
. Create a credentials file in the following format (before 2025.06):
+
[source, properties, role='noheader']
----
AZURE_STORAGE_ACCOUNT_NAME=<your-azure-storage-account-name>
AZURE_STORAGE_ACCOUNT_KEY=<your-azure-storage-account-key>
----
+
Starting with 2025.06, update your credentials secret as follows:
+
[source, properties, role='noheader']
----
# Azure credentials file
AZURE_STORAGE_ACCOUNT=<your_account>
AZURE_STORAGE_KEY=<your_key>
AZURE_CLIENT_ID=<your_service_principal_id>
AZURE_CLIENT_SECRET=<your_service_principal_secret>
AZURE_TENANT_ID=<your_tenant_id>
----

. Create the secret named `azurecred` via the credentials file:
+
[source, shell, role='noheader']
Expand Down