Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Proxying adapter requests to Apigee

Scott Ganyo edited this page Apr 19, 2019 · 1 revision

A proxy is inserted via the HTTP_PROXY, HTTPS_PROXY, and NO_PROXY environment variables. One way these variables could be added is to edit the apigee-adapter container declaration in the apigee-adapter.yaml.

Example:

      containers:
      - name: apigee-adapter
        env:
          - name: HTTP_PROXY
            value: http://http_proxy:port
          - name: HTTPS_PROXY
            value: http://https_proxy:port
          - name: NO_PROXY
            value: 127.0.0.1, localhost

Note that the proxy must be reachable from the adapter container in Kubernetes.