Skip to content

Commit b073033

Browse files
chore(main): release 0.5.0 (#320)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Jonathan Hess <hessjc@google.com>
1 parent 5aeb27b commit b073033

File tree

6 files changed

+24
-6
lines changed

6 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.5.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v0.4.0...v0.5.0) (2023-04-26)
4+
5+
6+
### Features
7+
8+
* Improve security posture of proxy containers. ([#322](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/322)) ([dc8911e](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/dc8911e3a0db5e32bc4c611ddbdcb875dbcc51e3))
9+
* Make proxy container healthchecks more resilient. ([#321](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/321)) ([548a922](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/548a9222d54b6c85dd45dc5983beebac5e7f08ef))
10+
11+
12+
### Bug Fixes
13+
14+
* The e2e k8s node pool version should match the master version ([#319](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/319)) ([fbfa004](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/fbfa00444da0f310f52c61ed4665a5153bebe2c4))
15+
16+
17+
### Miscellaneous Chores
18+
19+
* Prepare release 0.5.0 ([#327](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/327)) ([5aeb27b](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/5aeb27b100ca186bf74c4952a9252718cd43b60b))
20+
321
## [0.4.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v0.3.0...v0.4.0) (2023-03-28)
422

523

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Run the following command to install the cloud sql proxy operator into
4545
your kubernetes cluster:
4646

4747
```shell
48-
kubectl apply -f https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v0.4.0/cloud-sql-proxy-operator.yaml
48+
kubectl apply -f https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v0.5.0/cloud-sql-proxy-operator.yaml
4949
```
5050

5151
Confirm that the operator is installed and running by listing its pods:

docs/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Run the following command to install the cloud sql proxy operator into
2020
your kubernetes cluster:
2121

2222
```shell
23-
curl https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v0.4.0/install.sh | bash
23+
curl https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v0.5.0/install.sh | bash
2424
```
2525

2626
This will use `helm` to install the `cert-manager` operator, a prerequisite. Then

installer/cloud-sql-proxy-operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1465,7 +1465,7 @@ spec:
14651465
- --leader-elect
14661466
command:
14671467
- /manager
1468-
image: gcr.io/cloud-sql-connectors/cloud-sql-operator/cloud-sql-proxy-operator:0.4.0
1468+
image: gcr.io/cloud-sql-connectors/cloud-sql-operator/cloud-sql-proxy-operator:0.5.0
14691469
livenessProbe:
14701470
httpGet:
14711471
path: /healthz

installer/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
set -euxo # exit 1 from the script when command fails
1818

19-
# If CSQL_OPERATOR_VERSION is not set, use the release version: v0.4.0.
20-
CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v0.4.0}"
19+
# If CSQL_OPERATOR_VERSION is not set, use the release version: v0.5.0.
20+
CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v0.5.0}"
2121

2222
# If CSQL_CERT_MANAGER_VERSION is not set, use the default: v1.11.1.
2323
CSQL_CERT_MANAGER_VERSION="${CSQL_CERT_MANAGER_VERSION:-v1.11.1}"

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0
1+
0.5.0

0 commit comments

Comments
 (0)