完整文件示例

    1. nodes:
    2. - address: 1.1.1.1
    3. user: ubuntu
    4. role:
    5. - controlplane
    6. - etcd
    7. ssh_key_path: /home/user/.ssh/id_rsa
    8. port: 2222
    9. - address: 2.2.2.2
    10. user: ubuntu
    11. role:
    12. - worker
    13. ssh_key: |-
    14. -----BEGIN RSA PRIVATE KEY-----
    15. -----END RSA PRIVATE KEY-----
    16. - address: example.com
    17. user: ubuntu
    18. role:
    19. - worker
    20. hostname_override: node3
    21. internal_address: 192.168.1.6
    22. labels:
    23. app: ingress
    24. # 默认值为false,如果设置为true,当发现不支持的Docker版本时,RKE不会报错
    25. ignore_docker_version: false
    26. # 集群级SSH私钥,如果没有为节点设置ssh信息则使用该私钥
    27. ssh_key_path: ~/.ssh/test
    28. # 启用SSH代理,使用带有密码的SSH私钥
    29. # 这需要配置环境`SSH_AUTH_SOCK`,指向已添加私钥的SSH代理
    30. ssh_agent_auth: true
    31. # 镜像仓库凭证列表
    32. # 如果你使用的是Docker Hub注册表,
    33. # 你可以省略`url`
    34. # 或者设置为`docker.io`is_default设置为`true`
    35. # 将覆盖全局设置中设置的系统默认注册表
    36. private_registries:
    37. - url: registry.com
    38. user: Username # 请替换为真实的用户名
    39. password: password # 请替换为真实的密码
    40. is_default: true
    41. # 堡垒机配置
    42. bastion_host:
    43. address: x.x.x.x
    44. user: ubuntu
    45. port: 22
    46. ssh_key_path: /home/user/.ssh/bastion_rsa
    47. # or
    48. # ssh_key: |-
    49. # -----BEGIN RSA PRIVATE KEY-----
    50. #
    51. # -----END RSA PRIVATE KEY-----
    52. # Set the name of the Kubernetes cluster
    53. cluster_name: mycluster
    54. # The Kubernetes version used. The default versions of Kubernetes
    55. # are tied to specific versions of the system images.
    56. #
    57. # For RKE v0.2.x and below, the map of Kubernetes versions and their system images is
    58. # located here:
    59. # https://github.com/rancher/types/blob/release/v2.2/apis/management.cattle.io/v3/k8s_defaults.go
    60. #
    61. # For RKE v0.3.0 and above, the map of Kubernetes versions and their system images is
    62. # located here:
    63. # https://github.com/rancher/kontainer-driver-metadata/blob/master/rke/k8s_rke_system_images.go
    64. #
    65. # In case the kubernetes_version and kubernetes image in
    66. kubernetes_version: v1.10.3-rancher2
    67. # System Images are defaulted to a tag that is mapped to a specific
    68. # Kubernetes Version and not required in a cluster.yml.
    69. # Each individual system image can be specified if you want to use a different tag.
    70. #
    71. # For RKE v0.2.x and below, the map of Kubernetes versions and their system images is
    72. # located here:
    73. # https://github.com/rancher/types/blob/release/v2.2/apis/management.cattle.io/v3/k8s_defaults.go
    74. #
    75. # For RKE v0.3.0 and above, the map of Kubernetes versions and their system images is
    76. # located here:
    77. # https://github.com/rancher/kontainer-driver-metadata/blob/master/rke/k8s_rke_system_images.go
    78. #
    79. system_images:
    80. kubernetes: rancher/hyperkube:v1.10.3-rancher2
    81. etcd: rancher/coreos-etcd:v3.1.12
    82. alpine: rancher/rke-tools:v0.1.9
    83. nginx_proxy: rancher/rke-tools:v0.1.9
    84. cert_downloader: rancher/rke-tools:v0.1.9
    85. kubernetes_services_sidecar: rancher/rke-tools:v0.1.9
    86. kubedns: rancher/k8s-dns-kube-dns-amd64:1.14.8
    87. dnsmasq: rancher/k8s-dns-dnsmasq-nanny-amd64:1.14.8
    88. kubedns_sidecar: rancher/k8s-dns-sidecar-amd64:1.14.8
    89. kubedns_autoscaler: rancher/cluster-proportional-autoscaler-amd64:1.0.0
    90. pod_infra_container: rancher/pause-amd64:3.1
    91. services:
    92. etcd:
    93. # if external etcd is used
    94. # path: /etcdcluster
    95. # external_urls:
    96. # - https://etcd-example.com:2379
    97. # ca_cert: |-
    98. # -----BEGIN CERTIFICATE-----
    99. # xxxxxxxxxx
    100. # -----END CERTIFICATE-----
    101. # cert: |-
    102. # -----BEGIN CERTIFICATE-----
    103. # xxxxxxxxxx
    104. # -----END CERTIFICATE-----
    105. # key: |-
    106. # -----BEGIN PRIVATE KEY-----
    107. # xxxxxxxxxx
    108. # -----END PRIVATE KEY-----
    109. # Note for Rancher v2.0.5 and v2.0.6 users: If you are configuring
    110. # Cluster Options using a Config File when creating Rancher Launched
    111. # Kubernetes, the names of services should contain underscores
    112. # only: `kube_api`.
    113. kube-api:
    114. # IP range for any services created on Kubernetes
    115. # This must match the service_cluster_ip_range in kube-controller
    116. service_cluster_ip_range: 10.43.0.0/16
    117. # Expose a different port range for NodePort services
    118. service_node_port_range: 30000-32767
    119. pod_security_policy: false
    120. # Add additional arguments to the kubernetes API server
    121. # This WILL OVERRIDE any existing defaults
    122. extra_args:
    123. # Enable audit log to stdout
    124. audit-log-path: "-"
    125. # Increase number of delete workers
    126. delete-collection-workers: 3
    127. # Set the level of log output to debug-level
    128. v: 4
    129. # Note for Rancher 2 users: If you are configuring Cluster Options
    130. # using a Config File when creating Rancher Launched Kubernetes,
    131. # the names of services should contain underscores only:
    132. # `kube_controller`. This only applies to Rancher v2.0.5 and v2.0.6.
    133. kube-controller:
    134. # CIDR pool used to assign IP addresses to pods in the cluster
    135. cluster_cidr: 10.42.0.0/16
    136. # IP range for any services created on Kubernetes
    137. kubelet:
    138. # Base domain for the cluster
    139. cluster_domain: cluster.local
    140. # IP address for the DNS service endpoint
    141. cluster_dns_server: 10.43.0.10
    142. # Fail if swap is on
    143. fail_swap_on: false
    144. # Set max pods to 250 instead of default 110
    145. extra_args:
    146. max-pods: 250
    147. # Optionally define additional volume binds to a service
    148. extra_binds:
    149. - "/usr/libexec/kubernetes/kubelet-plugins:/usr/libexec/kubernetes/kubelet-plugins"
    150. # Currently, only authentication strategy supported is x509.
    151. # You can optionally create additional SANs (hostnames or IPs) to
    152. # add to the API server PKI certificate.
    153. # This is useful if you want to use a load balancer for the
    154. # control plane servers.
    155. authentication:
    156. strategy: x509
    157. sans:
    158. - "10.18.160.10"
    159. - "my-loadbalancer-1234567890.us-west-2.elb.amazonaws.com"
    160. # Kubernetes Authorization mode
    161. # Use `mode: rbac` to enable RBAC
    162. # Use `mode: none` to disable authorization
    163. authorization:
    164. mode: rbac
    165. # If you want to set a Kubernetes cloud provider, you specify
    166. # the name and configuration
    167. cloud_provider:
    168. name: aws
    169. # Add-ons are deployed using kubernetes jobs. RKE will give
    170. # up on trying to get the job status after this timeout in seconds..
    171. addon_job_timeout: 30
    172. # Specify network plugin-in (canal, calico, flannel, weave, or none)
    173. network:
    174. plugin: canal
    175. # Specify DNS provider (coredns or kube-dns)
    176. dns:
    177. provider: coredns
    178. # Currently only nginx ingress provider is supported.
    179. # To disable ingress controller, set `provider: none`
    180. # `node_selector` controls ingress placement and is optional
    181. ingress:
    182. provider: nginx
    183. node_selector:
    184. app: ingress
    185. # All add-on manifests MUST specify a namespace
    186. addons: |-
    187. ---
    188. apiVersion: v1
    189. kind: Pod
    190. metadata:
    191. name: my-nginx
    192. namespace: default
    193. spec:
    194. containers:
    195. - name: my-nginx
    196. image: nginx
    197. ports:
    198. - containerPort: 80
    199. addons_include:
    200. - https://raw.githubusercontent.com/rook/rook/master/cluster/examples/kubernetes/rook-operator.yaml