diff --git a/modules/ROOT/pages/kubernetes/operations/backup-restore.adoc b/modules/ROOT/pages/kubernetes/operations/backup-restore.adoc index 027f57f8c..afc452aa9 100644 --- a/modules/ROOT/pages/kubernetes/operations/backup-restore.adoc +++ b/modules/ROOT/pages/kubernetes/operations/backup-restore.adoc @@ -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= AZURE_STORAGE_ACCOUNT_KEY= ---- ++ +Starting with 2025.06, update your credentials secret as follows: ++ +[source, properties, role='noheader'] +---- +# Azure credentials file +AZURE_STORAGE_ACCOUNT= +AZURE_STORAGE_KEY= +AZURE_CLIENT_ID= +AZURE_CLIENT_SECRET= +AZURE_TENANT_ID= +---- + . Create the secret named `azurecred` via the credentials file: + [source, shell, role='noheader']