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

Commit 05070d2

Browse files
authored
Release 0.31.0 (#862)
1 parent 960051c commit 05070d2

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ IMPROVEMENTS:
1818
* CRDs: add field Last Synced Time to CRD status and add printer column on CRD to display time since when the
1919
resource was last successfully synced with Consul. [[GH-849](https://github.com/hashicorp/consul-helm/pull/849)]
2020
* 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)]
21+
* Updated the default Consul image to `hashicorp/consul:1.9.4`.
22+
* Updated the default consul-k8s image to `hashicorp/consul-k8s:0.25.0`.
2123

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

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

3236
## 0.30.0 (Feb 16, 2021)
3337

Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: consul
3-
version: 0.30.0
4-
appVersion: 1.9.3
3+
version: 0.31.0
4+
appVersion: 1.9.4
55
kubeVersion: ">= 1.13.0"
66
description: Official HashiCorp Consul Chart
77
home: https://www.consul.io

test/acceptance/tests/metrics/metrics_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ func TestAppMetrics(t *testing.T) {
9696
// This image is required till Consul 1.10 is released and the CI config is updated.
9797
// Note we need to set ent license to empty explicitly so that if tests have ent license
9898
// globally provided this test won't try to apply it because this image is not an enterprise image.
99-
// TODO: Remove this setting and ent license settings once Consul alpha is released.
100-
"global.image": "docker.mirror.hashicorp.services/hashicorpdev/consul:latest",
99+
// TODO: Remove this setting and ent license settings once the Helm chart with Consul 1.10 is released.
100+
"global.image": "docker.mirror.hashicorp.services/hashicorp/consul:1.10.0-alpha",
101101
"server.enterpriseLicense.secretName": "",
102102
"server.enterpriseLicense.secretKey": "",
103103

values.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ global:
3232
# image: "hashicorp/consul-enterprise:1.5.0-ent"
3333
# ```
3434
# @default: hashicorp/consul:<latest version>
35-
image: "hashicorp/consul:1.9.3"
35+
image: "hashicorp/consul:1.9.4"
3636

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

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

0 commit comments

Comments
 (0)