-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
feat(csql): update all v1 Cloud SQL Proxy usages to v2 #13194
base: main
Are you sure you want to change the base?
Conversation
/gcbrun |
I can see that v2 Cloud SQL Proxy is starting fine... Cloud SQL proxy started for MySQL.
Cloud SQL proxy started for Postgres.
Cloud SQL proxy started for SQL Server.
|
Moved back to draft, to fix tests. |
Cloud SQL tests are all passing now... cloud-sql/mysql/client-side-encryption................................[ SUCCESS]
cloud-sql/mysql/sqlalchemy............................................[ SUCCESS]
cloud-sql/postgres/client-side-encryption.............................[ SUCCESS]
cloud-sql/postgres/sqlalchemy.........................................[ SUCCESS]
cloud-sql/sql-server/client-side-encryption...........................[ SUCCESS]
cloud-sql/sql-server/sqlalchemy.......................................[ SUCCESS] |
mountPath: /cloudsql | ||
ports: | ||
- containerPort: 8080 | ||
initContainers: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
using newer native Kubernetes sidecar pattern: https://kubernetes.io/blog/2023/08/25/native-sidecar-containers/
The only official docs page that is affected by this change is https://cloud.google.com/python/django/kubernetes-engine which already telling users to install the v2 Cloud SQL Proxy (partially). Will need to update one reference of |
Description
The Cloud SQL Proxy v2 was released in 2022, moving test infra and usage of v1 Proxy over to v2 syntax. v1 is heading towards deprecation.
Migration guide can be referenced for guidance.
Fixes #13123