Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Introduce recursive listing for Azure Blob scaler #512

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion content/docs/2.5/scalers/azure-storage-blob.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ triggers:
- `blobCount` - Average target value to trigger scaling actions. (default: 5)
- `connectionFromEnv` - Name of the environment variable your deployment uses to get the connection string.
- `blobPrefix` - Prefix for the Blob. Use this to specify sub path for the blobs if required. (default: `""`)
- `blobDelimiter` - Delimiter for identifying the blob prefix. (default: `/`)
- `blobDelimiter` - Delimiter for identifying the blob prefix. Set to `""` to list all blobs with `blobPrefix` recursively (default: `/`)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be better to have an option such as listBlobsRecursively: true (default: false)?

Because maybe I want to list recursively, but only as of path foo/bar/*

- `cloud` - Name of the cloud environment that the blob belongs to. Must be a known Azure cloud environment, or `Private` for Azure Stack Hub or Air Gapped clouds. (valid values: `AzurePublicCloud`, `AzureUSGovernmentCloud`, `AzureChinaCloud`, `AzureGermanCloud`, `Private`; default: `AzurePublicCloud`)

When `cloud` is set to `Private`, the `endpointSuffix` parameter is required. Otherwise, it is automatically generated based on the cloud environment. `endpointSuffix` represents the storage blob endpoint suffix of the cloud environment that the blob belongs to, e.g. `blob.core.cloudapi.de` for `AzureGermanCloud`.
Expand Down