1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- OPTIONS=--loglevel={{ openshift_master_debug_level }}
- CONFIG_FILE={{ openshift_master_config_file }}
- {# Preserve existing OPENSHIFT_DEFAULT_REGISTRY settings in scale up runs #}
- {% if openshift_master_is_scaleup_host %}
- {{ openshift_master_default_registry_value }}
- {% elif openshift_push_via_dns | default(false) %}
- OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000
- {% endif %}
- {% if openshift_is_containerized | bool %}
- IMAGE_VERSION={{ openshift_image_tag }}
- {% endif %}
- {% if openshift_cloudprovider_kind | default('') == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined %}
- AWS_ACCESS_KEY_ID={{ openshift_cloudprovider_aws_access_key }}
- AWS_SECRET_ACCESS_KEY={{ openshift_cloudprovider_aws_secret_key }}
- {% endif %}
- {% if not (openshift_cloudprovider_kind is defined and openshift_cloudprovider_kind == 'aws' and openshift_cloudprovider_aws_access_key is defined and openshift_cloudprovider_aws_secret_key is defined) %}
- {% for item in master_aws %}
- {{ item }}
- {% endfor %}
- {% endif %}
- {% if 'api_env_vars' in openshift.master or 'controllers_env_vars' in openshift.master -%}
- {% for key, value in (openshift.master.api_env_vars | default({})).items() | union((openshift.master.controllers_env_vars | default({})).items()) -%}
- {{ key }}={{ value }}
- {% endfor -%}
- {% endif -%}
- # Proxy configuration
- # See https://docs.openshift.com/enterprise/latest/install_config/install/advanced_install.html#configuring-global-proxy
- {% if 'http_proxy' in openshift.common %}
- HTTP_PROXY={{ openshift.common.http_proxy | default('') }}
- {% endif %}
- {% if 'https_proxy' in openshift.common %}
- HTTPS_PROXY={{ openshift.common.https_proxy | default('')}}
- {% endif %}
- {% if 'no_proxy' in openshift.common %}
- NO_PROXY={{ openshift.common.no_proxy | default('') }},{{ openshift.common.portal_net }},{{ openshift.master.sdn_cluster_network_cidr }}
- {% endif %}
- {% if not ('https_proxy' in openshift.common or 'https_proxy' in openshift.common or 'no_proxy' in openshift.common) %}
- {% for item in master_proxy %}
- {{ item }}
- {% endfor %}
- {% endif %}
|