mirror of
https://github.com/rancher/rke.git
synced 2025-10-20 18:40:43 +00:00
Refactor configuration defaults Add comments to config Add configurable utility images Add configurable network plugin images Add configurable kubedns images
84 lines
2.0 KiB
YAML
84 lines
2.0 KiB
YAML
---
|
|
|
|
auth:
|
|
strategy: x509
|
|
options:
|
|
foo: bar
|
|
|
|
# supported plugins are:
|
|
# flannel
|
|
# calico
|
|
# canal
|
|
network:
|
|
plugin: flannel
|
|
options:
|
|
flannel_image: quay.io/coreos/flannel:v0.9.1
|
|
flannel_cni_image: quay.io/coreos/flannel-cni:v0.2.0
|
|
|
|
ssh_key_path: ~/.ssh/test
|
|
|
|
nodes:
|
|
- address: 1.1.1.1
|
|
user: ubuntu
|
|
role: [controlplane, etcd]
|
|
ssh_key_path: /home/user/.ssh/id_rsa
|
|
- address: 2.2.2.2
|
|
user: ubuntu
|
|
role: [worker]
|
|
ssh_key: |-
|
|
-----BEGIN RSA PRIVATE KEY-----
|
|
|
|
-----END RSA PRIVATE KEY-----
|
|
- address: example.com
|
|
user: ubuntu
|
|
role: [worker]
|
|
hostname_override: node3
|
|
internal_address: 192.168.1.6
|
|
|
|
services:
|
|
etcd:
|
|
image: quay.io/coreos/etcd:latest
|
|
kube-api:
|
|
image: rancher/k8s:v1.8.3-rancher2
|
|
service_cluster_ip_range: 10.233.0.0/18
|
|
extra_args:
|
|
v: 4
|
|
kube-controller:
|
|
image: rancher/k8s:v1.8.3-rancher2
|
|
cluster_cidr: 10.233.64.0/18
|
|
service_cluster_ip_range: 10.233.0.0/18
|
|
scheduler:
|
|
image: rancher/k8s:v1.8.3-rancher2
|
|
kubelet:
|
|
image: rancher/k8s:v1.8.3-rancher2
|
|
cluster_domain: cluster.local
|
|
cluster_dns_server: 10.233.0.3
|
|
infra_container_image: gcr.io/google_containers/pause-amd64:3.0
|
|
kubeproxy:
|
|
image: rancher/k8s:v1.8.3-rancher2
|
|
|
|
|
|
system_images:
|
|
alpine: alpine:latest
|
|
nginx_proxy: rancher/rke-nginx-proxy:0.1.0
|
|
cert_downloader: rancher/rke-cert-deployer:0.1.0
|
|
kubedns_image: gcr.io/google_containers/k8s-dns-kube-dns-amd64:1.14.5
|
|
dnsmasq_image: gcr.io/google_containers/k8s-dns-dnsmasq-nanny-amd64:1.14.5
|
|
kubedns_sidecar_image: gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.5
|
|
kubedns_autoscaler_image: gcr.io/google_containers/cluster-proportional-autoscaler-amd64:1.0.0
|
|
|
|
# all addon manifests MUST specify a namespace
|
|
addons: |-
|
|
---
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: my-nginx
|
|
namespace: default
|
|
spec:
|
|
containers:
|
|
- name: my-nginx
|
|
image: nginx
|
|
ports:
|
|
- containerPort: 80
|