File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change
1
+ Version 0.1.41 (2023-09-13)
2
+ ---------------------------
3
+ charts/daemonset: Add support for Azure managed identity (#112)
4
+
1
5
Version 0.1.40 (2023-09-12)
2
6
---------------------------
3
7
charts/cloudserviceaccount: Add support for Azure managed identity (#109)
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : daemonset
3
3
description : A Helm Chart to deploy an arbitrary container as a daemonset.
4
- version : 0.2.1
4
+ version : 0.3.0
5
5
icon : https://raw.githubusercontent.com/snowplow-devops/helm-charts/master/docs/logo/snowplow.png
6
6
home : https://github.com/snowplow-devops/helm-charts
7
7
sources :
@@ -17,6 +17,6 @@ dependencies:
17
17
version : 0.1.0
18
18
repository : " https://snowplow-devops.github.io/helm-charts"
19
19
- name : cloudserviceaccount
20
- version : 0.2 .0
20
+ version : 0.3 .0
21
21
repository : " https://snowplow-devops.github.io/helm-charts"
22
22
condition : cloudserviceaccount.deploy
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ helm delete daemonset
50
50
51
51
| Key | Type | Default | Description |
52
52
| -----| ------| ---------| -------------|
53
- | global.cloud | string | ` "" ` | Cloud specific bindings (options: aws, gcp) |
53
+ | global.cloud | string | ` "" ` | Cloud specific bindings (options: aws, gcp, azure ) |
54
54
| fullnameOverride | string | ` "" ` | Overrides the full-name given to the deployment resources (default: .Release.Name) |
55
55
| image.repository | string | ` "nginx" ` | |
56
56
| image.tag | string | ` "latest" ` | |
@@ -84,5 +84,6 @@ helm delete daemonset
84
84
| cloudserviceaccount.name | string | ` "snowplow-sd-service-account" ` | Name of the service-account to create |
85
85
| cloudserviceaccount.aws.roleARN | string | ` "" ` | IAM Role ARN to bind to the k8s service account |
86
86
| cloudserviceaccount.gcp.serviceAccount | string | ` "" ` | Service Account email to bind to the k8s service account |
87
+ | cloudserviceaccount.azure.managedIdentityId | string | ` "" ` | Workload managed identity id to bind to the k8s service account |
87
88
| clusterrole.deploy | bool | ` false ` | Whether to create a cluster role |
88
89
| clusterole.rules | list | ` [] ` | List of PolicyRules to attach to cluster role |
Original file line number Diff line number Diff line change 1
1
global :
2
- # -- Cloud specific bindings (options: aws, gcp)
2
+ # -- Cloud specific bindings (options: aws, gcp, azure )
3
3
cloud : " "
4
4
5
5
# -- Overrides the full-name given to the deployment resources (default: .Release.Name)
@@ -116,6 +116,9 @@ cloudserviceaccount:
116
116
gcp :
117
117
# -- Service Account email to bind to the k8s service account
118
118
serviceAccount : " "
119
+ azure :
120
+ # -- Workload managed identity id to bind to the k8s service account
121
+ managedIdentityId : " "
119
122
120
123
clusterrole :
121
124
# -- Whether to create a cluster role
You can’t perform that action at this time.
0 commit comments