Suggest the best image to build K8S clsuter

Can some one point to optimized/stable/tailored images that can be used to build the Kubenretes cluster?
I want to build a in house cluster.

1 Like

Most people use the hyperkube image to start their clusters. With Hyperkube you can start all components needed by the cluster(change versions to what you want/ need.):
hyperkube = “gcr.io/google_containers/hyperkube:v1.9.6

Flannel images which are used a lot:
flannel = “quay.io/coreos/flannel:v0.10.0-amd64
flannel_cni = “quay.io/coreos/flannel-cni:v0.3.0

And last, kubedns images:
kubedns = “gcr.io/google_containers/k8s-dns-kube-dns-amd64:1.14.10
kubedns_dnsmasq = “gcr.io/google_containers/k8s-dns-dnsmasq-nanny-amd64:1.14.10
kubedns_sidecar = “gcr.io/google_containers/k8s-dns-sidecar-amd64:1.14.10

(sorry for post spam, couldn’t post 5 links in 1 post :/)

@jarkomes thanks for the help!