Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump Proxy container examples to v2.8.0 #2059

Merged
merged 9 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -369,13 +369,13 @@ currently supported:
- `$VERSION-bullseye`

The `$VERSION` is the Proxy version without the leading "v" (e.g.,
`2.0.0`).
`2.8.0`).

For example, to pull a particular version, use a command like:

``` shell
# $VERSION is 2.0.0
docker pull gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.0.0
# $VERSION is 2.8.0
docker pull gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0
```

We recommend pinning to a specific version tag and using automation with a CI pipeline
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-health-check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ for more than 1 minute.
- name: my-application
image: gcr.io/my-container/my-application:1.1
- name: cloud-sql-proxy
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.1.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0
args:
# Set the --max-connections flag to 50
- "--max-connections"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ spec:
- name: cloud-sql-proxy
# It is recommended to use the latest version of the Cloud SQL Auth Proxy
# Make sure to update on a regular schedule!
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.6.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0
imagePullPolicy: IfNotPresent

args:
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ For the PgBouncer deployment, we add the proxy as a sidecar, starting it on port

``` yaml
- name: cloud-sql-proxy
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.0.0 # make sure to use the latest version
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0 # make sure to use the latest version
args:
# Replace DB_PORT with the port the proxy should listen on
- "--port=<DB_PORT>"
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-service/pgbouncer_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ spec:
- name: cloud-sql-proxy
# It is recommended to use the latest version of the Cloud SQL Auth Proxy
# Make sure to update on a regular schedule!
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.1.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0
args:
- "--port=5431"
- "<INSTANCE_CONNECTION_NAME>"
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-sidecar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ as a separate service for several reasons:
- name: cloud-sql-proxy
# It is recommended to use the latest version of the Cloud SQL Auth Proxy
# Make sure to update on a regular schedule!
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.1.0 # make sure to use the latest version
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0 # make sure to use the latest version
args:
# If connecting from a VPC-native GKE cluster, you can use the
# following flag to have the proxy connect over private IP
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-sidecar/job_with_shutdown_hook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
- name: cloud-sql-proxy
# It is recommended to use the latest version of the Cloud SQL Auth Proxy
# Make sure to update on a regular schedule!
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.6.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0
args:
# Enable the admin api server on port 9091
- "--admin-port=9091"
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-sidecar/proxy_with_sa_key.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ spec:
- name: cloud-sql-proxy
# It is recommended to use the latest version of the Cloud SQL Auth Proxy
# Make sure to update on a regular schedule!
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.1.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0
args:
# If connecting from a VPC-native GKE cluster, you can use the
# following flag to have the proxy connect over private IP
Expand Down
2 changes: 1 addition & 1 deletion examples/k8s-sidecar/proxy_with_workload_identity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
- name: cloud-sql-proxy
# It is recommended to use the latest version of the Cloud SQL Auth Proxy
# Make sure to update on a regular schedule!
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.1.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.8.0
args:
# If connecting from a VPC-native GKE cluster, you can use the
# following flag to have the proxy connect over private IP
Expand Down
Loading