| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| Expand Up | @@ -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: | ||
| Expand All | @@ -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 | ||
|
Comment thread
Copy link
Copy Markdown
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. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Qualitywhere are these secrets created?
Sorry, something went wrong.
All reactions
Copy link
Copy Markdown
Contributor
Author
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. Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Qualitybill and i just discussed this, will update on Tuesday
Sorry, something went wrong.
All reactions
|
||
| secret: | ||
| secretName: cloudsql-oauth-credentials | ||
| - name: ssl-certs | ||
| hostPath: | ||
| path: /etc/ssl/certs | ||
| - name: cloudsql | ||
| emptyDir: | ||
| # [END volumes] | ||
| # [END kubernetes_deployment] | ||
|
|
||
| --- | ||
|
|
||
| Expand Down | ||
| Back | FazBrowse Home | New Git URL |
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.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low QualityThere's secrets in here but the tutorial I see now doesn't have secret anywhere?
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
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.
Choose a reason Spam Abuse Off Topic Outdated Duplicate Resolved Low Qualitybill and i just discussed this, will update on Tuesday
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.