-
Notifications
You must be signed in to change notification settings - Fork 556
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #458 from wongma7/1.2-chart2.0
release-1.2: Helm chart 2.0.0 with changelog
- Loading branch information
Showing
9 changed files
with
241 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
# Helm chart | ||
|
||
# v2.0.0 | ||
|
||
## Breaking changes | ||
|
||
Multiple changes in values file at `sidecars`, `controller` and `node` | ||
|
||
--- | ||
```yaml | ||
sidecars: | ||
xxxxxxxxx: | ||
repository: | ||
tag: | ||
``` | ||
Moving to | ||
```yaml | ||
sidecars: | ||
xxxxxxxxx: | ||
image: | ||
repository: | ||
tag: | ||
``` | ||
--- | ||
```yaml | ||
podAnnotations: | ||
resources: | ||
nodeSelector: | ||
tolerations: | ||
affinity: | ||
``` | ||
Moving to | ||
```yaml | ||
controller: | ||
podAnnotations: | ||
resources: | ||
nodeSelector: | ||
tolerations: | ||
affinity: | ||
``` | ||
--- | ||
```yaml | ||
hostAliases: | ||
dnsPolicy: | ||
dnsConfig: | ||
``` | ||
Moving to | ||
```yaml | ||
node: | ||
hostAliases: | ||
dnsPolicy: | ||
dnsConfig: | ||
``` | ||
--- | ||
```yaml | ||
serviceAccount: | ||
controller: | ||
``` | ||
Moving to | ||
```yaml | ||
controller: | ||
serviceAccount: | ||
``` | ||
## New features | ||
* Chart API `v2` (requires Helm 3) | ||
* Set `resources` and `imagePullPolicy` fields independently for containers | ||
* Set `logLevel`, `affinity`, `nodeSelector`, `podAnnotations` and `tolerations` fields independently | ||
for Controller deployment and Node daemonset | ||
* Set `reclaimPolicy` and `volumeBindingMode` fields in storage class | ||
|
||
## Fixes | ||
|
||
* Fixing Controller deployment using `podAnnotations` and `tolerations` values from Node daemonset | ||
* Let the user define the whole `tolerations` array, default to `- operator: Exists` | ||
* Default `logLevel` lowered from `5` to `2` | ||
* Default `imagePullPolicy` everywhere set to `IfNotPresent` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
charts/aws-efs-csi-driver/templates/controller-serviceaccount.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.