Skip to content

Commit

Permalink
Merge pull request #3034 from wcs1only/helm-update-1.1.1
Browse files Browse the repository at this point in the history
Update helm chart and release notes for 1.1.1
  • Loading branch information
wcs1only committed Apr 6, 2021
2 parents 266eb0b + 283d178 commit 343871b
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 15 deletions.
14 changes: 7 additions & 7 deletions charts/dapr/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
apiVersion: v1
appVersion: "1.1.0"
appVersion: "1.1.1"
description: A Helm chart for Dapr on Kubernetes
name: dapr
version: 1.1.0
version: 1.1.1
dependencies:
- name: dapr_rbac
version: "1.1.0"
version: "1.1.1"
repository: "file://dapr_rbac"
- name: dapr_operator
version: "1.1.0"
version: "1.1.1"
repository: "file://dapr_operator"
- name: dapr_placement
version: "1.1.0"
version: "1.1.1"
repository: "file://dapr_placement"
- name: dapr_sidecar_injector
version: "1.1.0"
version: "1.1.1"
repository: "file://dapr_sidecar_injector"
- name: dapr_sentry
version: "1.1.0"
version: "1.1.1"
repository: "file://dapr_sentry"
- name: dapr_dashboard
version: "0.7.0"
Expand Down
2 changes: 1 addition & 1 deletion charts/dapr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The Helm chart has the follow configuration options that can be supplied:
| Parameter | Description | Default |
|-------------------------------------------|-------------------------------------------------------------------------|-------------------------|
| `global.registry` | Docker image registry | `docker.io/daprio` |
| `global.tag` | Docker image version tag | `1.1.0-rc1` |
| `global.tag` | Docker image version tag | `1.1.1` |
| `global.logAsJson` | Json log format for control plane services | `false` |
| `global.imagePullPolicy` | Global Control plane service imagePullPolicy | `IfNotPresent` |
| `global.imagePullSecret` | Control plane service image pull secret for docker registry | `""` |
Expand Down
2 changes: 1 addition & 1 deletion charts/dapr/charts/dapr_config/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr configuration
name: dapr_config
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion charts/dapr/charts/dapr_operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Kubernetes Operator
name: dapr_operator
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion charts/dapr/charts/dapr_placement/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Kubernetes placement
name: dapr_placement
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion charts/dapr/charts/dapr_rbac/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Kubernetes RBAC components
name: dapr_rbac
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion charts/dapr/charts/dapr_sentry/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Dapr Sentry
name: dapr_sentry
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion charts/dapr/charts/dapr_sidecar_injector/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for the Dapr sidecar injector
name: dapr_sidecar_injector
version: 1.1.0
version: 1.1.1
2 changes: 1 addition & 1 deletion charts/dapr/values.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
global:
registry: docker.io/daprio
tag: "1.1.0"
tag: "1.1.1"
dnsSuffix: ".cluster.local"
logAsJson: false
imagePullPolicy: IfNotPresent
Expand Down
14 changes: 14 additions & 0 deletions docs/release_notes/v1.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

# Dapr 1.1.1

## Fixes

* Add POST HTTP API for shutdown (https://github.com/dapr/dapr/pull/3020)

### Overview

If you are not using the HTTP shutdown API as part of the Kubernetes job support that was added in v1.1, you do not need to upgrade to 1.1.1. If you are using this feature, please read on.

As a general rule, state mutating APIs should not be GET requests. The newly added shutdown API endpoint allows changing the state of the Dapr sidecar, by asking it to quit. We are adding a POST API that is functionally equivalent to the GET API. The GET API will be deprecated according to our [deprecation plan](https://docs.dapr.io/operations/support/support-release-policy/#feature-and-deprecations). We strongly recommend that anyone looking to adopt Kubernetes job support via the HTTP shutdown API integrate with the POST API.

Please see the [latest documentation](https://docs.dapr.io/operations/hosting/kubernetes/kubernetes-job/) for an example integration with the HTTP POST shutdown API.

0 comments on commit 343871b

Please sign in to comment.