Hyunsun Moon | 72db0fd | 2019-10-15 13:08:44 -0600 | [diff] [blame] | 1 | # Copyright 2019-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # Sample kubespray override variables for COMAC deploy. |
| 16 | # Pass this file as an extra variables when running kubespray. For example, |
| 17 | # ansible-playbook -b -i inventory/comac/hosts.ini -e @inventory/comac/extra-vars.yaml cluster.yml |
| 18 | # Tested with Kubespray release-2.11 |
| 19 | |
| 20 | # OS |
| 21 | disable_swap: true |
| 22 | populate_inventory_to_hosts_file: true |
| 23 | |
| 24 | # etcd |
| 25 | etcd_deployment_type: docker |
| 26 | etcd_memory_limit: 8192M |
| 27 | |
| 28 | # Docker |
| 29 | docker_iptables_enabled: true |
| 30 | docker_insecure_registries: |
Hyunsun Moon | 264631a | 2019-10-29 14:57:07 -0600 | [diff] [blame] | 31 | - 10.90.0.150:5000 |
Hyunsun Moon | 72db0fd | 2019-10-15 13:08:44 -0600 | [diff] [blame] | 32 | |
| 33 | # K8S |
| 34 | kubeadm_enabled: true |
| 35 | kubelet_deployment_type: host |
| 36 | kubectl_localhost: true |
| 37 | kubeconfig_localhost: true |
| 38 | |
| 39 | kube_feature_gates: [SCTPSupport=True] |
| 40 | kube_pods_subnet: 172.18.0.0/17 |
| 41 | kube_service_addresses: 172.18.128.0/17 |
| 42 | kube_apiserver_node_port_range: 2000-36767 |
| 43 | kube_network_plugin: calico |
| 44 | kube_network_plugin_multus: true |
| 45 | multus_version: stable |
| 46 | ipip: false |
| 47 | |
| 48 | local_volume_provisioner_enabled: true |
| 49 | |
| 50 | # Applications |
| 51 | dns_mode: coredns |
| 52 | dns_cores_per_replica: 256 |
| 53 | dns_min_replicas: 1 |
| 54 | |
| 55 | helm_enabled: true |
| 56 | helm_deployment_type: host |
Hyunsun Moon | 856b761 | 2019-11-14 17:17:34 -0600 | [diff] [blame] | 57 | helm_version: v2.16.1 |