Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Commit

Permalink
Release 0.31.0 (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
ishustava committed Mar 19, 2021
1 parent 960051c commit 05070d2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ IMPROVEMENTS:
* CRDs: add field Last Synced Time to CRD status and add printer column on CRD to display time since when the
resource was last successfully synced with Consul. [[GH-849](https://github.com/hashicorp/consul-helm/pull/849)]
* Specify `kubeVersion` in `Chart.yaml` to denote that this chart is tested with Kubernetes 1.13+ [[GH-870](https://github.com/hashicorp/consul-helm/pull/870)]
* Updated the default Consul image to `hashicorp/consul:1.9.4`.
* Updated the default consul-k8s image to `hashicorp/consul-k8s:0.25.0`.

BUG FIXES:
* Increase Consul client daemonset's memory from `25Mi` to `50Mi` for its `client-tls-init`
Expand All @@ -28,6 +30,8 @@ BUG FIXES:

In addition, if `server.exposeGossipAndRPCPorts` is true, expose the WAN port
(`8302`) as a host port. [[GH-839](https://github.com/hashicorp/consul-helm/pull/839)]
* Fix a warning when running `helm template` and overriding `client.affinity` setting with a string.
[[GH-854](https://github.com/hashicorp/consul-helm/pull/854)]

## 0.30.0 (Feb 16, 2021)

Expand Down
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: consul
version: 0.30.0
appVersion: 1.9.3
version: 0.31.0
appVersion: 1.9.4
kubeVersion: ">= 1.13.0"
description: Official HashiCorp Consul Chart
home: https://www.consul.io
Expand Down
4 changes: 2 additions & 2 deletions test/acceptance/tests/metrics/metrics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ func TestAppMetrics(t *testing.T) {
// This image is required till Consul 1.10 is released and the CI config is updated.
// Note we need to set ent license to empty explicitly so that if tests have ent license
// globally provided this test won't try to apply it because this image is not an enterprise image.
// TODO: Remove this setting and ent license settings once Consul alpha is released.
"global.image": "docker.mirror.hashicorp.services/hashicorpdev/consul:latest",
// TODO: Remove this setting and ent license settings once the Helm chart with Consul 1.10 is released.
"global.image": "docker.mirror.hashicorp.services/hashicorp/consul:1.10.0-alpha",
"server.enterpriseLicense.secretName": "",
"server.enterpriseLicense.secretKey": "",

Expand Down
5 changes: 3 additions & 2 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ global:
# image: "hashicorp/consul-enterprise:1.5.0-ent"
# ```
# @default: hashicorp/consul:<latest version>
image: "hashicorp/consul:1.9.3"
image: "hashicorp/consul:1.9.4"

# Array of objects containing image pull secret names that will be applied to each service account.
# This can be used to reference image pull secrets if using a custom consul or consul-k8s Docker image.
Expand All @@ -52,7 +52,7 @@ global:
# Docker image that is used for functionality such the catalog sync.
# This can be overridden per component.
# @default: hashicorp/consul-k8s:<latest version>
imageK8S: "hashicorp/consul-k8s:0.24.0"
imageK8S: "hashicorp/consul-k8s:0.25.0"

# The name of the datacenter that the agents should
# register as. This can't be changed once the Consul cluster is up and running
Expand Down Expand Up @@ -1288,6 +1288,7 @@ connectInject:
defaultEnabled: "-"
# Configures the Consul sidecar to run a merged metrics server
# to combine and serve both Envoy and Connect service metrics.
# This feature is available only in Consul v1.10-alpha or greater.
defaultEnableMerging: false
# Configures the port at which the Consul sidecar will listen on to return
# combined metrics. This port only needs to be changed if it conflicts with
Expand Down

0 comments on commit 05070d2

Please sign in to comment.