Skip to content

Commit a9e5d31

Browse files
authored
v2.9.1 (#608)
1 parent 65dc09d commit a9e5d31

13 files changed

+40
-28
lines changed

.changes/2.9.1.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## 2.9.1 (May 14, 2025)
2+
3+
BUG FIXES:
4+
5+
* Fixed an issue where the operator could not connect to the HCP Terraform / TFE instance when using the UBI-based image due to a TLS validation error. The previous workaround required setting the `TFC_TLS_SKIP_VERIFY` environment variable to `true` in the Deployment. [[GH-600](https://github.com/hashicorp/hcp-terraform-operator/pull/600)]
6+
7+
ENHANCEMENTS:
8+
9+
* `Helm Chart`: Add the ability to configure environment variables for the Operator Deployment via `operator.env`. [[GH-601](https://github.com/hashicorp/hcp-terraform-operator/pull/601)]
10+
11+
DEPENDENCIES:
12+
13+
* Bump `kube-rbac-proxy` from 0.19.0 to 0.19.1. [[GH-599](https://github.com/hashicorp/hcp-terraform-operator/pull/599)]
14+

.changes/unreleased/BUG FIXES-600-20250429-133405.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/unreleased/DEPENDENCIES-599-20250429-132517.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/unreleased/ENHANCEMENTS-601-20250429-135741.yaml

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.9.1 (May 14, 2025)
2+
3+
BUG FIXES:
4+
5+
* Fixed an issue where the operator could not connect to the HCP Terraform / TFE instance when using the UBI-based image due to a TLS validation error. The previous workaround required setting the `TFC_TLS_SKIP_VERIFY` environment variable to `true` in the Deployment. [[GH-600](https://github.com/hashicorp/hcp-terraform-operator/pull/600)]
6+
7+
ENHANCEMENTS:
8+
9+
* `Helm Chart`: Add the ability to configure environment variables for the Operator Deployment via `operator.env`. [[GH-601](https://github.com/hashicorp/hcp-terraform-operator/pull/601)]
10+
11+
DEPENDENCIES:
12+
13+
* Bump `kube-rbac-proxy` from 0.19.0 to 0.19.1. [[GH-599](https://github.com/hashicorp/hcp-terraform-operator/pull/599)]
14+
115
## 2.9.0 (April 24, 2025)
216

317
BREAKING CHANGES:
@@ -40,7 +54,6 @@ DEPENDENCIES:
4054
## Community Contributors :raised_hands:
4155

4256
- @baptman21 made their contribution in https://github.com/hashicorp/hcp-terraform-operator/pull/496
43-
4457
## 2.8.1 (March 12, 2025)
4558

4659
ENHANCEMENTS:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Every target has a BIN_NAME argument that must be provided via --build-arg=BIN_NAME=<name>
88
# when building.
99

10-
ARG GO_VERSION=1.24.2
10+
ARG GO_VERSION=1.24.3
1111

1212
# ===================================
1313
#

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Three simple commands to install the Operator:
4444
```console
4545
$ helm repo add hashicorp https://helm.releases.hashicorp.com
4646
$ helm repo update
47-
$ helm install demo hashicorp/hcp-terraform-operator --wait --version 2.9.0
47+
$ helm install demo hashicorp/hcp-terraform-operator --wait --version 2.9.1
4848
```
4949

5050
More detailed information about the installation and available values can be found [here](./charts/hcp-terraform-operator/README.md).

charts/hcp-terraform-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ apiVersion: v2
55
name: hcp-terraform-operator
66
description: Official Helm chart for HCP Terraform Operator for Kubernetes.
77
type: application
8-
version: "2.9.0"
9-
appVersion: "2.9.0"
8+
version: "2.9.1"
9+
appVersion: "2.9.1"

charts/hcp-terraform-operator/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Use the option `--version VERSION` with `helm install` and `helm upgrade` comman
2525

2626
```console
2727
$ helm install demo hashicorp/hcp-terraform-operator \
28-
--version 2.9.0 \
28+
--version 2.9.1 \
2929
--namespace tfc-operator-system \
3030
--create-namespace
3131
```
@@ -36,7 +36,7 @@ Below are examples of the Operator installation/upgrade Helm chart with options.
3636

3737
```console
3838
$ helm install demo hashicorp/hcp-terraform-operator \
39-
--version 2.9.0 \
39+
--version 2.9.1 \
4040
--namespace tfc-operator-system \
4141
--create-namespace \
4242
--set operator.syncPeriod=10m \
@@ -55,7 +55,7 @@ If targeting a Terraform Enterprise instance rather than HCP Terraform, set the
5555

5656
```console
5757
$ helm install demo hashicorp/hcp-terraform-operator \
58-
--version 2.9.0 \
58+
--version 2.9.1 \
5959
--set operator.tfeAddress="https://tfe-api.my-company.com"
6060
```
6161

@@ -67,7 +67,7 @@ For more information, please refer to the [FAQ](./../../docs/faq.md#general-ques
6767

6868
```console
6969
$ helm upgrade demo hashicorp/hcp-terraform-operator \
70-
--version 2.9.0 \
70+
--version 2.9.1 \
7171
--namespace hcp-terraform-operator-system \
7272
--set operator.syncPeriod=5m \
7373
--set controllers.agentPool.workers=5 \

charts/test/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hashicorp/hcp-terraform-operator/charts/test
22

3-
go 1.24.2
3+
go 1.24.3
44

55
require (
66
github.com/gruntwork-io/terratest v0.47.2

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: registry.connect.redhat.com/hashicorp/hcp-terraform-operator
8-
newTag: 2.9.0
8+
newTag: 2.9.1

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hashicorp/hcp-terraform-operator
22

3-
go 1.24.2
3+
go 1.24.3
44

55
require (
66
github.com/go-logr/logr v1.4.2

version/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.9.0
1+
2.9.1

0 commit comments

Comments
 (0)