Skip to content

Commit 41b4a54

Browse files
authored
Merge pull request #497 from andyzhangx/user-agent-suffix
feat: set default userAgentSuffix in driver installation
2 parents 8540764 + 45f92f2 commit 41b4a54

File tree

5 files changed

+4
-2
lines changed

5 files changed

+4
-2
lines changed

charts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ The following table lists the configurable parameters of the latest Azure Blob S
6161
| ----------------------------------------------------- | ----------------------------------------------------- | -------------------------------------------------------------- |
6262
| `driver.name` | alternative driver name | `blob.csi.azure.com` |
6363
| `driver.customUserAgent` | custom userAgent | `` |
64-
| `driver.userAgentSuffix` | userAgent suffix | `` |
64+
| `driver.userAgentSuffix` | userAgent suffix | `OSS-helm` |
6565
| `feature.enableFSGroupPolicy` | enable `fsGroupPolicy` on a k8s 1.20+ cluster | `false` |
6666
| `image.blob.repository` | blob-csi-driver docker image | `mcr.microsoft.com/k8s/csi/blob-csi` |
6767
| `image.blob.tag` | blob-csi-driver docker image tag | `latest` |
-113 Bytes
Binary file not shown.

charts/latest/blob-csi-driver/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ feature:
130130
driver:
131131
name: blob.csi.azure.com
132132
customUserAgent: ""
133-
userAgentSuffix: ""
133+
userAgentSuffix: "OSS-helm"
134134

135135
linux:
136136
kubelet: /var/lib/kubelet

deploy/csi-blob-controller.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ spec:
7171
- "--v=5"
7272
- "--endpoint=$(CSI_ENDPOINT)"
7373
- "--metrics-address=0.0.0.0:29634"
74+
- "--user-agent-suffix=OSS-kubectl"
7475
ports:
7576
- containerPort: 29632
7677
name: healthz

deploy/csi-blob-node.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ spec:
8888
- "--blobfuse-proxy-endpoint=$(BLOBFUSE_PROXY_ENDPOINT)"
8989
- "--nodeid=$(KUBE_NODE_NAME)"
9090
- "--metrics-address=0.0.0.0:29635"
91+
- "--user-agent-suffix=OSS-kubectl"
9192
ports:
9293
- containerPort: 29633
9394
name: healthz

0 commit comments

Comments
 (0)