Tag resolution

    Important

    The Knative Serving controller must be configured to access the container registry to use this feature.

    Knative Serving accepts the SSL_CERT_FILE and SSL_CERT_DIR environment variables.

    You can configure trusting certificates by mounting your certificates into the controller Deployment, and then setting the environment variable appropriately.

    Corporate proxy

    If you are behind a corporate proxy, you must proxy the tag resolution requests between the controller and your registry.

    Knative accepts the HTTP_PROXY and HTTPS_PROXY environment variables, so you can configure the controller Deployment as follows:

    1. apiVersion: apps/v1
    2. kind: Deployment
    3. metadata:
    4. spec:
    5. template:
    6. spec:
    7. containers:
    8. env:
    9. - name: HTTP_PROXY
    10. value: http://proxy.example.com
    11. - name: HTTPS_PROXY