Skip to content

Commit 9f8842b

Browse files
chore(main): release 1.0.0 (#344)
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Jonathan Hess <[email protected]>
1 parent 02506ff commit 9f8842b

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [1.0.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v0.5.0...v1.0.0) (2023-05-16)
4+
5+
6+
### Bug Fixes
7+
8+
* delete misconfigured pods in error state. ([#338](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/338)) ([4a02aa7](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/4a02aa72bf4ace836b6c8af345302617b7f90765)), closes [#337](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/337)
9+
10+
11+
### Miscellaneous Chores
12+
13+
* Prepare release 1.0.0 ([#353](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/issues/353)) ([02506ff](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/commit/02506ff275abe3d37d6f59c1c059da41a66cdfa0))
14+
315
## [0.5.0](https://github.com/GoogleCloudPlatform/cloud-sql-proxy-operator/compare/v0.4.0...v0.5.0) (2023-04-26)
416

517

README.md

+1-1
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.5.0/cloud-sql-proxy-operator.yaml
48+
kubectl apply -f https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v1.0.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

+1-1
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.5.0/install.sh | bash
23+
curl https://storage.googleapis.com/cloud-sql-connectors/cloud-sql-proxy-operator/v1.0.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

+1-1
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.5.0
1468+
image: gcr.io/cloud-sql-connectors/cloud-sql-operator/cloud-sql-proxy-operator:1.0.0
14691469
livenessProbe:
14701470
httpGet:
14711471
path: /healthz

installer/install.sh

+2-2
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.5.0.
20-
CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v0.5.0}"
19+
# If CSQL_OPERATOR_VERSION is not set, use the release version: v1.0.0.
20+
CSQL_OPERATOR_VERSION="${CSQL_OPERATOR_VERSION:-v1.0.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
1.0.0

0 commit comments

Comments
 (0)