atomic-openshift-master.j2 1.1 KB

12345678910111213141516171819202122
  1. OPTIONS=--loglevel={{ openshift.master.debug_level }}
  2. CONFIG_FILE={{ openshift_master_config_file }}
  3. {% if openshift.common.is_containerized | bool %}
  4. IMAGE_VERSION={{ openshift_image_tag }}
  5. {% endif %}
  6. {% if 'cloudprovider' in openshift and 'aws' in openshift.cloudprovider and 'kind' in openshift.cloudprovider and openshift.cloudprovider.kind == 'aws' and 'access_key' in openshift.cloudprovider.aws and 'secret_key' in openshift.cloudprovider.aws %}
  7. AWS_ACCESS_KEY_ID={{ openshift.cloudprovider.aws.access_key }}
  8. AWS_SECRET_ACCESS_KEY={{ openshift.cloudprovider.aws.secret_key }}
  9. {% endif %}
  10. # Proxy configuration
  11. # See https://docs.openshift.com/enterprise/latest/install_config/install/advanced_install.html#configuring-global-proxy
  12. {% if 'http_proxy' in openshift.common %}
  13. HTTP_PROXY={{ openshift.common.http_proxy | default('') }}
  14. {% endif %}
  15. {% if 'https_proxy' in openshift.common %}
  16. HTTPS_PROXY={{ openshift.common.https_proxy | default('')}}
  17. {% endif %}
  18. {% if 'no_proxy' in openshift.common %}
  19. NO_PROXY={{ openshift.common.no_proxy | default('') | join(',') }},{{ openshift.common.portal_net }},{{ openshift.master.sdn_cluster_network_cidr }}
  20. {% endif %}