atomic-openshift-master-controllers.j2 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen={{ 'https' if openshift.master.api_use_ssl else 'http' }}://{{ openshift.master.bind_addr }}:{{ openshift.master.controllers_port }}
  2. CONFIG_FILE={{ openshift_master_config_file }}
  3. {% if openshift_push_via_dns | default(false) %}
  4. OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000
  5. {% endif %}
  6. {% if openshift.common.is_containerized | bool %}
  7. IMAGE_VERSION={{ openshift_image_tag }}
  8. {% endif %}
  9. {% if openshift_cloudprovider_kind | default('') == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_access_key is defined %}
  10. AWS_ACCESS_KEY_ID={{ openshift_cloudprovider_aws_access_key }}
  11. AWS_SECRET_ACCESS_KEY={{ openshift_cloudprovider_aws_secret_key }}
  12. {% endif %}
  13. {% if 'controllers_env_vars' in openshift.master -%}
  14. {% for key, value in openshift.master.controllers_env_vars.items() -%}
  15. {{ key }}={{ value }}
  16. {% endfor -%}
  17. {% endif -%}
  18. # Proxy configuration
  19. # See https://docs.openshift.com/enterprise/latest/install_config/install/advanced_install.html#configuring-global-proxy
  20. {% if 'http_proxy' in openshift.common %}
  21. HTTP_PROXY={{ openshift.common.http_proxy | default('') }}
  22. {% endif %}
  23. {% if 'https_proxy' in openshift.common %}
  24. HTTPS_PROXY={{ openshift.common.https_proxy | default('')}}
  25. {% endif %}
  26. {% if 'no_proxy' in openshift.common %}
  27. NO_PROXY={{ openshift.common.no_proxy | default('') }},{{ openshift.common.portal_net }},{{ openshift.master.sdn_cluster_network_cidr }}
  28. {% endif %}