atomic-openshift-master-api.j2 983 B

1234567891011121314151617
  1. OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen={{ 'https' if openshift.master.api_use_ssl else 'http' }}://{{ openshift.master.bind_addr }}:{{ openshift.master.api_port }} --master={{ openshift.master.loopback_api_url }}
  2. CONFIG_FILE={{ openshift_master_config_file }}
  3. {% if openshift.common.is_containerized | bool %}
  4. IMAGE_VERSION={{ openshift_version }}
  5. {% endif %}
  6. {% if 'cloudprovider' in openshift and 'aws' 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. # Origin uses standard HTTP_PROXY environment variables. Be sure to set
  12. # NO_PROXY for your master
  13. #NO_PROXY=master.example.com
  14. #HTTP_PROXY=http://USER:PASSWORD@IPADDR:PORT
  15. #HTTPS_PROXY=https://USER:PASSWORD@IPADDR:PORT