-
Notifications
You must be signed in to change notification settings - Fork 9
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
Add GCP PubSub configuration #34
base: main
Are you sure you want to change the base?
Conversation
@@ -39,3 +39,4 @@ config: | |||
profile: | |||
port: 4269 | |||
kubernetesClusterDomain: cluster.local | |||
gcpSecret: null |
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.
this is not needed. only setting GOOGLE_APPLICATION_CREDENTIALS should be fine?
@@ -27,6 +27,10 @@ spec: | |||
env: | |||
- name: KUBERNETES_CLUSTER_DOMAIN | |||
value: {{ quote .Values.kubernetesClusterDomain }} | |||
{{- if .Values.gcpSecret }} | |||
- name: GOOGLE_APPLICATION_CREDENTIALS | |||
value: /etc/gcp/key.json |
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.
shouldn't this be /etc/gcp/{{.Values.gcpSecret}}
I dont know the proper syntax for it
As a GCP user, I want to use GCP PubSub with my Telemetry instance.