You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

194 lines
6.9 KiB

contiv network support (#1914) * Add Contiv support Contiv is a network plugin for Kubernetes and Docker. It supports vlan/vxlan/BGP/Cisco ACI technologies. It support firewall policies, multiple networks and bridging pods onto physical networks. * Update contiv version to 1.1.4 Update contiv version to 1.1.4 and added SVC_SUBNET in contiv-config. * Load openvswitch module to workaround on CentOS7.4 * Set contiv cni version to 0.1.0 Correct contiv CNI version to 0.1.0. * Use kube_apiserver_endpoint for K8S_API_SERVER Use kube_apiserver_endpoint as K8S_API_SERVER to make contiv talks to a available endpoint no matter if there's a loadbalancer or not. * Make contiv use its own etcd Before this commit, contiv is using a etcd proxy mode to k8s etcd, this work fine when the etcd hosts are co-located with contiv etcd proxy, however the k8s peering certs are only in etcd group, as a result the etcd-proxy is not able to peering with the k8s etcd on etcd group, plus the netplugin is always trying to find the etcd endpoint on localhost, this will cause problem for all netplugins not runnign on etcd group nodes. This commit make contiv uses its own etcd, separate from k8s one. on kube-master nodes (where net-master runs), it will run as leader mode and on all rest nodes it will run as proxy mode. * Use cp instead of rsync to copy cni binaries Since rsync has been removed from hyperkube, this commit changes it to use cp instead. * Make contiv-etcd able to run on master nodes * Add rbac_enabled flag for contiv pods * Add contiv into CNI network plugin lists * migrate contiv test to tests/files Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> * Add required rules for contiv netplugin * Better handling json return of fwdMode * Make contiv etcd port configurable * Use default var instead of templating * roles/download/defaults/main.yml: use contiv 1.1.7 Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com>
7 years ago
  1. # Kubernetes configuration dirs and system namespace.
  2. # Those are where all the additional config stuff goes
  3. # the kubernetes normally puts in /srv/kubernets.
  4. # This puts them in a sane location and namespace.
  5. # Editting those values will almost surely break something.
  6. kube_config_dir: /etc/kubernetes
  7. kube_script_dir: "{{ bin_dir }}/kubernetes-scripts"
  8. kube_manifest_dir: "{{ kube_config_dir }}/manifests"
  9. system_namespace: kube-system
  10. # Logging directory (sysvinit systems)
  11. kube_log_dir: "/var/log/kubernetes"
  12. # This is where all the cert scripts and certs will be located
  13. kube_cert_dir: "{{ kube_config_dir }}/ssl"
  14. # This is where all of the bearer tokens will be stored
  15. kube_token_dir: "{{ kube_config_dir }}/tokens"
  16. # This is where to save basic auth file
  17. kube_users_dir: "{{ kube_config_dir }}/users"
  18. kube_api_anonymous_auth: true
  19. ## Change this to use another Kubernetes version, e.g. a current beta release
  20. kube_version: v1.9.1
  21. # Where the binaries will be downloaded.
  22. # Note: ensure that you've enough disk space (about 1G)
  23. local_release_dir: "/tmp/releases"
  24. # Random shifts for retrying failed ops like pushing/downloading
  25. retry_stagger: 5
  26. # This is the group that the cert creation scripts chgrp the
  27. # cert files to. Not really changable...
  28. kube_cert_group: kube-cert
  29. # Cluster Loglevel configuration
  30. kube_log_level: 2
  31. # Users to create for basic auth in Kubernetes API via HTTP
  32. # Optionally add groups for user
  33. kube_api_pwd: "{{ lookup('password', 'credentials/kube_user length=15 chars=ascii_letters,digits') }}"
  34. kube_users:
  35. kube:
  36. pass: "{{kube_api_pwd}}"
  37. role: admin
  38. groups:
  39. - system:masters
  40. ## It is possible to activate / deactivate selected authentication methods (basic auth, static token auth)
  41. #kube_oidc_auth: false
  42. #kube_basic_auth: false
  43. #kube_token_auth: false
  44. ## Variables for OpenID Connect Configuration https://kubernetes.io/docs/admin/authentication/
  45. ## To use OpenID you have to deploy additional an OpenID Provider (e.g Dex, Keycloak, ...)
  46. # kube_oidc_url: https:// ...
  47. # kube_oidc_client_id: kubernetes
  48. ## Optional settings for OIDC
  49. # kube_oidc_ca_file: {{ kube_cert_dir }}/ca.pem
  50. # kube_oidc_username_claim: sub
  51. # kube_oidc_groups_claim: groups
  52. # Choose network plugin (calico, contiv, weave or flannel)
  53. # Can also be set to 'cloud', which lets the cloud provider setup appropriate routing
  54. kube_network_plugin: calico
  55. # weave's network password for encryption
  56. # if null then no network encryption
  57. # you can use --extra-vars to pass the password in command line
  58. weave_password: EnterPasswordHere
  59. # Weave uses consensus mode by default
  60. # Enabling seed mode allow to dynamically add or remove hosts
  61. # https://www.weave.works/docs/net/latest/ipam/
  62. weave_mode_seed: false
  63. # This two variable are automatically changed by the weave's role, do not manually change these values
  64. # To reset values :
  65. # weave_seed: uninitialized
  66. # weave_peers: uninitialized
  67. weave_seed: uninitialized
  68. weave_peers: uninitialized
  69. # Enable kubernetes network policies
  70. enable_network_policy: false
  71. # Kubernetes internal network for services, unused block of space.
  72. kube_service_addresses: 10.233.0.0/18
  73. # internal network. When used, it will assign IP
  74. # addresses from this range to individual pods.
  75. # This network must be unused in your network infrastructure!
  76. kube_pods_subnet: 10.233.64.0/18
  77. # internal network node size allocation (optional). This is the size allocated
  78. # to each node on your network. With these defaults you should have
  79. # room for 4096 nodes with 254 pods per node.
  80. kube_network_node_prefix: 24
  81. # The port the API Server will be listening on.
  82. kube_apiserver_ip: "{{ kube_service_addresses|ipaddr('net')|ipaddr(1)|ipaddr('address') }}"
  83. kube_apiserver_port: 6443 # (https)
  84. kube_apiserver_insecure_port: 8080 # (http)
  85. # Set to 0 to disable insecure port - Requires RBAC in authorization_modes and kube_api_anonymous_auth: true
  86. #kube_apiserver_insecure_port: 0 # (disabled)
  87. # DNS configuration.
  88. # Kubernetes cluster name, also will be used as DNS domain
  89. cluster_name: cluster.local
  90. # Subdomains of DNS domain to be resolved via /etc/resolv.conf for hostnet pods
  91. ndots: 2
  92. # Can be dnsmasq_kubedns, kubedns, manual or none
  93. dns_mode: kubedns
  94. # Set manual server if using a custom cluster DNS server
  95. #manual_dns_server: 10.x.x.x
  96. # Can be docker_dns, host_resolvconf or none
  97. resolvconf_mode: docker_dns
  98. # Deploy netchecker app to verify DNS resolve as an HTTP service
  99. deploy_netchecker: false
  100. # Ip address of the kubernetes skydns service
  101. skydns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(3)|ipaddr('address') }}"
  102. dnsmasq_dns_server: "{{ kube_service_addresses|ipaddr('net')|ipaddr(2)|ipaddr('address') }}"
  103. dns_domain: "{{ cluster_name }}"
  104. # Path used to store Docker data
  105. docker_daemon_graph: "/var/lib/docker"
  106. ## A string of extra options to pass to the docker daemon.
  107. ## This string should be exactly as you wish it to appear.
  108. ## An obvious use case is allowing insecure-registry access
  109. ## to self hosted registries like so:
  110. docker_options: "--insecure-registry={{ kube_service_addresses }} --graph={{ docker_daemon_graph }} {{ docker_log_opts }}"
  111. docker_bin_dir: "/usr/bin"
  112. # Settings for containerized control plane (etcd/kubelet/secrets)
  113. etcd_deployment_type: docker
  114. kubelet_deployment_type: host
  115. vault_deployment_type: docker
  116. helm_deployment_type: host
  117. # K8s image pull policy (imagePullPolicy)
  118. k8s_image_pull_policy: IfNotPresent
  119. # Kubernetes dashboard
  120. # RBAC required. see docs/getting-started.md for access details.
  121. dashboard_enabled: true
  122. # Monitoring apps for k8s
  123. efk_enabled: false
  124. # Helm deployment
  125. helm_enabled: false
  126. # Istio deployment
  127. istio_enabled: false
  128. # Local volume provisioner deployment
  129. local_volumes_enabled: false
  130. # Add Persistent Volumes Storage Class for corresponding cloud provider ( OpenStack is only supported now )
  131. persistent_volumes_enabled: false
  132. # Make a copy of kubeconfig on the host that runs Ansible in GITDIR/artifacts
  133. # kubeconfig_localhost: false
  134. # Download kubectl onto the host that runs Ansible in GITDIR/artifacts
  135. # kubectl_localhost: false
  136. # dnsmasq
  137. # dnsmasq_upstream_dns_servers:
  138. # - /resolvethiszone.with/10.0.4.250
  139. # - 8.8.8.8
  140. # Enable creation of QoS cgroup hierarchy, if true top level QoS and pod cgroups are created. (default true)
  141. # kubelet_cgroups_per_qos: true
  142. # A comma separated list of levels of node allocatable enforcement to be enforced by kubelet.
  143. # Acceptable options are 'pods', 'system-reserved', 'kube-reserved' and ''. Default is "".
  144. # kubelet_enforce_node_allocatable: pods
  145. ## Supplementary addresses that can be added in kubernetes ssl keys.
  146. ## That can be useful for example to setup a keepalived virtual IP
  147. # supplementary_addresses_in_ssl_keys: [10.0.0.1, 10.0.0.2, 10.0.0.3]
  148. ## Running on top of openstack vms with cinder enabled may lead to unschedulable pods due to NoVolumeZoneConflict restriction in kube-scheduler.
  149. ## See https://github.com/kubernetes-incubator/kubespray/issues/2141
  150. ## Set this variable to true to get rid of this issue
  151. volume_cross_zone_attachment: false