123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- apiLevels:
- - v1beta3
- - v1
- apiVersion: v1
- assetConfig:
- logoutURL: ""
- masterPublicURL: {{ openshift.master.public_api_url }}
- publicURL: {{ openshift.master.public_console_url }}/
- servingInfo:
- bindAddress: {{ openshift.master.bind_addr }}:{{ openshift.master.console_port }}
- certFile: master.server.crt
- clientCA: ""
- keyFile: master.server.key
- maxRequestsInFlight: 0
- requestTimeoutSeconds: 0
- corsAllowedOrigins:
- {# TODO: add support for user specified corsAllowedOrigins #}
- {% for origin in ['127.0.0.1', 'localhost', openshift.common.hostname, openshift.common.ip, openshift.common.public_hostname, openshift.common.public_ip] %}
- - {{ origin }}
- {% endfor %}
- {% if openshift.master.embedded_dns %}
- dnsConfig:
- bindAddress: {{ openshift.master.bind_addr }}:{{ openshift.master.dns_port }}
- {% endif %}
- etcdClientInfo:
- ca: ca.crt
- certFile: master.etcd-client.crt
- keyFile: master.etcd-client.key
- urls:
- {% for etcd_url in openshift.master.etcd_urls %}
- - {{ etcd_url }}
- {% endfor %}
- {% if openshift.master.embedded_etcd %}
- etcdConfig:
- address: {{ openshift.common.hostname }}:{{ openshift.master.etcd_port }}
- peerAddress: {{ openshift.common.hostname }}:7001
- peerServingInfo:
- bindAddress: {{ openshift.master.bind_addr }}:7001
- certFile: etcd.server.crt
- clientCA: ca.crt
- keyFile: etcd.server.key
- servingInfo:
- bindAddress: {{ openshift.master.bind_addr }}:{{ openshift.master.etcd_port }}
- certFile: etcd.server.crt
- clientCA: ca.crt
- keyFile: etcd.server.key
- storageDirectory: {{ openshift_data_dir }}/openshift.local.etcd
- {% endif %}
- etcdStorageConfig:
- kubernetesStoragePrefix: kubernetes.io
- kubernetesStorageVersion: v1
- openShiftStoragePrefix: openshift.io
- openShiftStorageVersion: v1
- imageConfig:
- format: {{ openshift.master.registry_url }}
- latest: false
- kind: MasterConfig
- kubeletClientInfo:
- {# TODO: allow user specified kubelet port #}
- ca: ca.crt
- certFile: master.kubelet-client.crt
- keyFile: master.kubelet-client.key
- port: 10250
- {% if openshift.master.embedded_kube %}
- kubernetesMasterConfig:
- apiLevels:
- - v1beta3
- - v1
- apiServerArguments: null
- controllerArguments: null
- {# TODO: support overriding masterCount #}
- masterCount: 1
- masterIP: ""
- podEvictionTimeout: ""
- schedulerConfigFile: {{ openshift_master_scheduler_conf }}
- servicesNodePortRange: ""
- servicesSubnet: {{ openshift.master.portal_net }}
- staticNodeNames: {{ openshift_node_ips | default([], true) }}
- {% endif %}
- masterClients:
- {# TODO: allow user to set externalKubernetesKubeConfig #}
- externalKubernetesKubeConfig: ""
- openshiftLoopbackKubeConfig: openshift-master.kubeconfig
- masterPublicURL: {{ openshift.master.public_api_url }}
- networkConfig:
- clusterNetworkCIDR: {{ openshift.master.sdn_cluster_network_cidr }}
- hostSubnetLength: {{ openshift.master.sdn_host_subnet_length }}
- networkPluginName: {{ openshift.common.sdn_network_plugin_name }}
- {% include 'v1_partials/oauthConfig.j2' %}
- policyConfig:
- bootstrapPolicyFile: {{ openshift_master_policy }}
- openshiftInfrastructureNamespace: openshift-infra
- openshiftSharedResourcesNamespace: openshift
- {# TODO: Allow users to override projectConfig items #}
- projectConfig:
- defaultNodeSelector: ""
- projectRequestMessage: ""
- projectRequestTemplate: ""
- securityAllocator:
- mcsAllocatorRange: s0:/2
- mcsLabelsPerProject: 5
- uidAllocatorRange: 1000000000-1999999999/10000
- serviceAccountConfig:
- managedNames:
- - default
- - builder
- - deployer
- privateKeyFile: serviceaccounts.private.key
- publicKeyFiles:
- - serviceaccounts.public.key
- servingInfo:
- bindAddress: {{ openshift.master.bind_addr }}:{{ openshift.master.api_port }}
- certFile: master.server.crt
- clientCA: ca.crt
- keyFile: master.server.key
- maxRequestsInFlight: 0
- requestTimeoutSeconds: 0
|