Skip to content
This repository was archived by the owner on Nov 1, 2022. It is now read-only.

Commit 7a58a8b

Browse files
author
Kingdon Barrett
authored
Merge pull request #645 from fluxcd/release/1.4.2
Release 1.4.2
2 parents f6fd8f3 + 56171ac commit 7a58a8b

File tree

8 files changed

+31
-12
lines changed

8 files changed

+31
-12
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 1.4.2 (2021-12-17)
2+
3+
This release of Helm Operator has no internal changes; the Helm Operator has been rebuilt against a fresh base image and a deployment manifest has been updated to match the updates to the operator in support of Kubernetes v1.22 and up, which no longer serves the `rbac.authorization.k8s.io/v1beta1` API.
4+
5+
### Fixes
6+
7+
- Updated deploy/rbac.yaml ClusterRole and ClusterRoleBinding to V1 [fluxcd/helm-operator#642][#642]
8+
9+
### Maintenance
10+
11+
- Release 1.4.2 [fluxcd/helm-operator#645][#645]
12+
13+
> **Helm Operator and Flux v1 are in maintenance:**
14+
15+
Please note, while we continue the Helm Operator support, there are some known issues in Helm Operator that cannot be addressed. Users are advised strongly to plan their infrastructure upgrades and [migrate to Flux v2 and Helm Controller](https://fluxcd.io/docs/migration/helm-operator-migration/) as soon as possible, as Helm Operator will soon [no longer be maintained](https://fluxcd.io/docs/migration/timetable/).
16+
17+
[#642]: https://github.com/fluxcd/helm-operator/pull/642
18+
[#645]: https://github.com/fluxcd/helm-operator/pull/645
19+
120
## 1.4.1 (2021-11-26)
221

322
This release of Helm Operator has no code changes, only base image and dependency updates.

chart/helm-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
2-
appVersion: "1.4.1"
3-
version: 1.4.1
2+
appVersion: "1.4.2"
3+
version: 1.4.2
44
kubeVersion: ">=1.16.0-0"
55
name: helm-operator
66
description: Flux Helm Operator is a CRD controller for declarative helming

chart/helm-operator/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fullnameOverride: ""
55

66
image:
77
repository: docker.io/fluxcd/helm-operator
8-
tag: 1.4.1
8+
tag: 1.4.2
99
pullPolicy: IfNotPresent
1010
pullSecret:
1111

deploy/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ spec:
7878
# There are no ":latest" images for helm-operator. Find the most recent
7979
# release or image version at https://hub.docker.com/r/fluxcd/helm-operator/tags
8080
# and replace the tag here.
81-
image: docker.io/fluxcd/helm-operator:1.4.1
81+
image: docker.io/fluxcd/helm-operator:1.4.2
8282
imagePullPolicy: IfNotPresent
8383
ports:
8484
- name: http

deploy/rbac.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
name: helm-operator
88
namespace: flux
99
---
10-
apiVersion: rbac.authorization.k8s.io/v1beta1
10+
apiVersion: rbac.authorization.k8s.io/v1
1111
kind: ClusterRole
1212
metadata:
1313
labels:
@@ -20,7 +20,7 @@ rules:
2020
- nonResourceURLs: ['*']
2121
verbs: ['*']
2222
---
23-
apiVersion: rbac.authorization.k8s.io/v1beta1
23+
apiVersion: rbac.authorization.k8s.io/v1
2424
kind: ClusterRoleBinding
2525
metadata:
2626
labels:

pkg/install/generated_templates.gogen.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/install/templates/deployment.yaml.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ spec:
8686
# There are no ":latest" images for helm-operator. Find the most recent
8787
# release or image version at https://hub.docker.com/r/fluxcd/helm-operator/tags
8888
# and replace the tag here.
89-
image: docker.io/fluxcd/helm-operator:1.4.1
89+
image: docker.io/fluxcd/helm-operator:1.4.2
9090
imagePullPolicy: IfNotPresent
9191
ports:
9292
- name: http

pkg/install/templates/rbac.yaml.tmpl

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
name: helm-operator
88
namespace: {{ .Namespace }}
99
---
10-
apiVersion: rbac.authorization.k8s.io/v1beta1
10+
apiVersion: rbac.authorization.k8s.io/v1
1111
kind: ClusterRole
1212
metadata:
1313
labels:
@@ -20,7 +20,7 @@ rules:
2020
- nonResourceURLs: ['*']
2121
verbs: ['*']
2222
---
23-
apiVersion: rbac.authorization.k8s.io/v1beta1
23+
apiVersion: rbac.authorization.k8s.io/v1
2424
kind: ClusterRoleBinding
2525
metadata:
2626
labels:

0 commit comments

Comments
 (0)