Skip to content

Commit

Permalink
chore: bump proxy version in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwotherspoon committed Jun 14, 2024
1 parent 848e1ea commit 189cd4e
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
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.8.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4
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.8.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4
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.8.0 # make sure to use the latest version
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4 # 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.8.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4
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.8.0 # make sure to use the latest version
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4 # 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.8.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4
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.8.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4
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.8.0
image: gcr.io/cloud-sql-connectors/cloud-sql-proxy:2.11.4
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

0 comments on commit 189cd4e

Please sign in to comment.