dynatrace-oss / dynatrace-gcp-monitor

Dynatrace integration for Google Cloud Platform monitoring

Home Page:https://www.dynatrace.com/support/help/technology-support/cloud-platforms/google-cloud-platform/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HTTPS_PROXY and HTTP_PROXY environment variables are not defined in the deployment or config map

jackstuart92 opened this issue · comments

The proxy environment variables are not set by the deployment YAML and likewise there are no parameters to set them in the config map.

https://github.com/dynatrace-oss/dynatrace-gcp-function/blob/master/k8s/dynatrace-gcp-function.yaml

I have added these myself but thought i would bring to your attention that they are not configurable options

config map

to be used in conjunction with USE_PROXY. set the proxy address
HTTPS_PROXY: "my.proxy.com:123"
HTTP_PROXY: "my.proxy.com:123"

deployment

      - name: HTTP_PROXY
        valueFrom:
          configMapKeyRef:
            name: dynatrace-gcp-function-config
            key: HTTP_PROXY
      - name: HTTPS_PROXY
        valueFrom:
          configMapKeyRef:
            name: dynatrace-gcp-function-config
            key: HTTPS_PROXY

Thank you for pointing it out.
We will add these env variables to deployment YAML.