master.env.j2 973 B

1234567891011121314151617181920
  1. {% if openshift_cloudprovider_kind | default('') == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined %}
  2. AWS_ACCESS_KEY_ID={{ openshift_cloudprovider_aws_access_key }}
  3. AWS_SECRET_ACCESS_KEY={{ openshift_cloudprovider_aws_secret_key }}
  4. {% endif %}
  5. # Proxy configuration
  6. # See https://docs.openshift.com/enterprise/latest/install_config/install/advanced_install.html#configuring-global-proxy
  7. {% if 'http_proxy' in openshift.common %}
  8. HTTP_PROXY={{ openshift.common.http_proxy | default('') }}
  9. {% endif %}
  10. {% if 'https_proxy' in openshift.common %}
  11. HTTPS_PROXY={{ openshift.common.https_proxy | default('')}}
  12. {% endif %}
  13. {% if 'no_proxy' in openshift.common %}
  14. NO_PROXY={{ openshift.common.no_proxy | default('') }},{{ openshift.common.portal_net }},{{ openshift_cluster_network_cidr }}
  15. {% endif %}
  16. {% if openshift_master_debug_level is defined %}
  17. DEBUG_LOGLEVEL={{ openshift_master_debug_level }}
  18. {% endif %}