Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 6.7k
Updated Django Container Engine sample to use CloudSQL v2, sidecar co…#758
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
3eb1605b7f5a7d06242c1376044fFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -19,12 +19,12 @@ | ||
| # instances of the bookshelf app are running on the cluster. | ||
| # For more info about Pods see: | ||
| # https://cloud.google.com/container-engine/docs/pods/ | ||
| # For more info about Replication Controllers: | ||
| # https://cloud.google.com/container-engine/docs/replicationcontrollers/ | ||
| # For more info about Deployments: | ||
| # https://kubernetes.io/docs/user-guide/deployments/ | ||
| # [START replication_controller] | ||
| apiVersion: v1 | ||
| kind: ReplicationController | ||
| # [START kubernetes_deployment] | ||
| apiVersion: extensions/v1beta1 | ||
| kind: Deployment | ||
| metadata: | ||
| name: polls | ||
| labels: | ||
| @@ -39,14 +39,54 @@ spec: | ||
| containers: | ||
| - name: polls-app | ||
| # Replace with your project ID or use `make template` | ||
| image: gcr.io/$GCLOUD_PROJECT/polls | ||
| image: gcr.io/<your-project-id>/polls | ||
| # This setting makes nodes pull the docker image every time before | ||
| # starting the pod. This is useful when debugging, but should be turned | ||
| # off in production. | ||
| imagePullPolicy: Always | ||
| env: | ||
| # [START cloudsql_secrets] | ||
| - name: DATABASE_USER | ||
| valueFrom: | ||
| secretKeyRef: | ||
| name: cloudsql | ||
| key: username | ||
| - name: DATABASE_PASSWORD | ||
| valueFrom: | ||
| secretKeyRef: | ||
| name: cloudsql | ||
| key: password | ||
| # [END cloudsql_secrets] | ||
| ports: | ||
| - containerPort: 8080 | ||
| # [END replication_controller] | ||
| # [START proxy_container] | ||
| - image: b.gcr.io/cloudsql-docker/gce-proxy:1.05 | ||
| name: cloudsql-proxy | ||
| command: ["/cloud_sql_proxy", "--dir=/cloudsql", | ||
| "-instances=<your-cloudsql-connection-string>=tcp:3306", | ||
| "-credential_file=/secrets/cloudsql/credentials.json"] | ||
| volumeMounts: | ||
| - name: cloudsql-oauth-credentials | ||
| mountPath: /secrets/cloudsql | ||
| readOnly: true | ||
| - name: ssl-certs | ||
| mountPath: /etc/ssl/certs | ||
| - name: cloudsql | ||
| mountPath: /cloudsql | ||
| # [END proxy_container] | ||
| # [START volumes] | ||
| volumes: | ||
| - name: cloudsql-oauth-credentials | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. where are these secrets created? ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bill and i just discussed this, will update on Tuesday | ||
| secret: | ||
| secretName: cloudsql-oauth-credentials | ||
| - name: ssl-certs | ||
| hostPath: | ||
| path: /etc/ssl/certs | ||
| - name: cloudsql | ||
| emptyDir: | ||
| # [END volumes] | ||
| # [END kubernetes_deployment] | ||
| --- | ||
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.
There's secrets in here but the tutorial I see now doesn't have secret anywhere?
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.
bill and i just discussed this, will update on Tuesday