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

Added SQL cloud proxy support guide for postgres dependent services #235

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Changes from 7 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
59 changes: 59 additions & 0 deletions getting-started/templates/systemlink-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,26 @@ minio:
## Configuration for test result storage.
##
testmonitorservice:
## Configuring sidecars for the Test Monitor Service.
## @param sidecars Additional containers to run in the same pod as the Test Monitor Service.
## These should be used for authentication proxy containers, such as the Cloud SQL Auth Proxy.
## ref: https://cloud.google.com/sql/docs/postgres/connect-kubernetes-engine#run_the_in_a_sidecar_pattern
sidecars: []
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are uses required to provide a value here? I cannot tell from the reference GCP docs what value to enter here?

## @param extraVolumes Volumes that can be used in sidecar containers
extraVolumes: []
priyadarshini-ni marked this conversation as resolved.
Show resolved Hide resolved

## Service account for Test Monitor.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccount:
## @param serviceAccount.annotations Annotations to add to the service account
##
annotations: {}
## @param serviceAccount.name The name of the service account to use.
## If not set, a name is generated using the fullname template
##
name: ""

## Database configuration
##
database:
Expand Down Expand Up @@ -517,6 +537,25 @@ dashboardhost:
## for more documentation and examples for these values.
##
grafana:
## Configuring extra containers for the Dashboardhost Service.
## @param extraContainers Additional containers to run in the same pod as the Dashboardhost Service.
## These should be used for authentication proxy containers, such as the Cloud SQL Auth Proxy.
## ref: https://cloud.google.com/sql/docs/postgres/connect-kubernetes-engine#run_the_in_a_sidecar_pattern
extraContainers: ""
priyadarshini-ni marked this conversation as resolved.
Show resolved Hide resolved
## @param extraContainerVolumes Volumes that can be used in the extraContainers
extraContainerVolumes: []

## Service account for dashboardhost service.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccount:
## @param serviceAccount.annotations Annotations to add to the service account
##
annotations: {}
## @param serviceAccount.name The name of the service account to use.
## If not set, a name is generated using the fullname template
##
name: ""

## Configure access to the Grafana container.
##
Expand Down Expand Up @@ -1260,6 +1299,26 @@ serviceregistry:
## Configuration for dynamic form fields.
##
dynamicformfields:
## Configuring sidecars for the Dynamic Form Fields Service.
## @param sidecars Additional containers to run in the same pod as the DFF Service.
## These should be used for authentication proxy containers, such as the Cloud SQL Auth Proxy.
## ref: https://cloud.google.com/sql/docs/postgres/connect-kubernetes-engine#run_the_in_a_sidecar_pattern
sidecars: []
## @param extraVolumes Volumes that can be used in sidecar containers
extraVolumes: []

## Service account for Dynamic Form Fields.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
##
serviceAccount:
## @param serviceAccount.annotations Annotations to add to the service account
##
annotations: {}
## @param serviceAccount.name The name of the service account to use.
## If not set, a name is generated using the fullname template
##
name: ""

## Database configuration
##
database:
Expand Down
Loading