You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2023. It is now read-only.
Copy file name to clipboardexpand all lines: CHANGELOG-1.6.md
+31-1
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,34 @@
1
-
:warning: v1.6.0 contains breaking changes. Please carefully review this [doc](README.md#v160-breaking-change) before upgrade from 1.x.x versions of pod-identity.
1
+
:warning: v1.6.0+ contains breaking changes. Please carefully review this [doc](README.md#v160-breaking-change) before upgrade from 1.x.x versions of pod-identity.
2
+
3
+
# v1.6.1
4
+
5
+
### Features
6
+
- re-initialize MIC cloud client when cloud config is updated ([#590](https://github.com/Azure/aad-pod-identity/pull/590))
7
+
- add finalizer for assigned identity ([#593](https://github.com/Azure/aad-pod-identity/pull/593))
8
+
- make update user msi calls retriable ([#601](https://github.com/Azure/aad-pod-identity/pull/601))
9
+
10
+
### Bug Fixes
11
+
- Fix issue that caused failures with long pod name > 63 chars ([#545](https://github.com/Azure/aad-pod-identity/pull/545))
12
+
- Fix updating assigned identity when azure identity updated ([#559](https://github.com/Azure/aad-pod-identity/pull/559))
13
+
14
+
### Other Improvements
15
+
- Add linting tools in Makefile ([#551](https://github.com/Azure/aad-pod-identity/pull/551))
16
+
- Code clean up and enable linting tools in CI ([#597](https://github.com/Azure/aad-pod-identity/pull/597))
17
+
- change to 404 instead if no azure identity found ([#629](https://github.com/Azure/aad-pod-identity/pull/629))
18
+
19
+
### Documentation
20
+
- document required role assignments ([#592](https://github.com/Azure/aad-pod-identity/pull/592))
21
+
- add `--subscription` parameter to az cli commands ([#602](https://github.com/Azure/aad-pod-identity/pull/602))
22
+
- add mic pod exception to deployment ([#611](https://github.com/Azure/aad-pod-identity/pull/611))
23
+
- reduce ambiguity in demo and role assignment docs ([#620](https://github.com/Azure/aad-pod-identity/pull/620))
24
+
- add support information to readme ([#623](https://github.com/Azure/aad-pod-identity/pull/623))
25
+
- update docs for pod-identity exception ([#624](https://github.com/Azure/aad-pod-identity/pull/624))
26
+
27
+
### Helm
28
+
29
+
- make cloud config configurable in helm chart ([#598](https://github.com/Azure/aad-pod-identity/pull/598))
30
+
- Support multiple identities in helm chart ([#457](https://github.com/Azure/aad-pod-identity/pull/457))
Copy file name to clipboardexpand all lines: charts/aad-pod-identity/README.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -186,7 +186,7 @@ The following tables list the configurable parameters of the aad-pod-identity ch
186
186
|`adminsecret.clientID`| Azure service principal clientID |``|
187
187
|`adminsecret.clientSecret`| Azure service principal clientSecret |``|
188
188
|`mic.image`| MIC image name |`mic`|
189
-
|`mic.tag`| MIC image tag |`1.6.0`|
189
+
|`mic.tag`| MIC image tag |`1.6.1`|
190
190
|`mic.PriorityClassName`| MIC priority class (can only be set when deploying to kube-system namespace) ||
191
191
|`mic.logVerbosity`| Log level. Uses V logs (glog) |`0`|
192
192
|`mic.resources`| Resource limit for MIC |`{}`|
@@ -201,8 +201,10 @@ The following tables list the configurable parameters of the aad-pod-identity ch
201
201
|`mic.syncRetryDuration`| Override interval in seconds at which sync loop should periodically check for errors and reconcile | If not provided, default value is `3600s`|
202
202
|`mic.immutableUserMSIs`| List of user-defined identities that shouldn't be deleted from VM/VMSS. | If not provided, default value is empty |
203
203
|`mic.cloudConfig`| The cloud configuration used to authenticate with Azure | If not provided, default value is `/etc/kubernetes/azure.json`|
204
+
|`mic.updateUserMSIMaxRetry`| The maximum retry of UpdateUserMSI call in case of assignment errors | If not provided, default value is `2`|
205
+
|`mic.updateUserMSIRetryInterval`| The duration to wait before retrying UpdateUserMSI (batch assigning/un-assigning identity from VM/VMSS) in case of errors | If not provided, default value is `1s`|
204
206
|`nmi.image`| NMI image name |`nmi`|
205
-
|`nmi.tag`| NMI image tag |`1.6.0`|
207
+
|`nmi.tag`| NMI image tag |`1.6.1`|
206
208
|`nmi.PriorityClassName`| NMI priority class (can only be set when deploying to kube-system namespace) ||
207
209
|`nmi.resources`| Resource limit for NMI |`{}`|
208
210
|`nmi.podAnnotations`| Pod annotations for NMI |`{}`|
0 commit comments