mirror of https://github.com/k3s-io/k3s
Merge pull request #69883 from chrisohaver/coredns-default
Make CoreDNS default in kubeup and update CoreDNS version/manifest in kubeup and kubeadmpull/58/head
commit
52de5c55e3
|
@ -27,6 +27,12 @@ rules:
|
|||
verbs:
|
||||
- list
|
||||
- watch
|
||||
- apiGroups:
|
||||
- ""
|
||||
resources:
|
||||
- nodes
|
||||
verbs:
|
||||
- get
|
||||
---
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRoleBinding
|
||||
|
@ -108,7 +114,7 @@ spec:
|
|||
operator: "Exists"
|
||||
containers:
|
||||
- name: coredns
|
||||
image: k8s.gcr.io/coredns:1.2.2
|
||||
image: k8s.gcr.io/coredns:1.2.4
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
limits:
|
||||
|
|
|
@ -27,6 +27,12 @@ rules:
|
|||
verbs:
|
||||
- list
|
||||
- watch
|
||||
- apiGroups:
|
||||
- ""
|
||||
resources:
|
||||
- nodes
|
||||
verbs:
|
||||
- get
|
||||
---
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRoleBinding
|
||||
|
@ -108,7 +114,7 @@ spec:
|
|||
operator: "Exists"
|
||||
containers:
|
||||
- name: coredns
|
||||
image: k8s.gcr.io/coredns:1.2.2
|
||||
image: k8s.gcr.io/coredns:1.2.4
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
limits:
|
||||
|
|
|
@ -27,6 +27,12 @@ rules:
|
|||
verbs:
|
||||
- list
|
||||
- watch
|
||||
- apiGroups:
|
||||
- ""
|
||||
resources:
|
||||
- nodes
|
||||
verbs:
|
||||
- get
|
||||
---
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: ClusterRoleBinding
|
||||
|
@ -108,7 +114,7 @@ spec:
|
|||
operator: "Exists"
|
||||
containers:
|
||||
- name: coredns
|
||||
image: k8s.gcr.io/coredns:1.2.2
|
||||
image: k8s.gcr.io/coredns:1.2.4
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
limits:
|
||||
|
|
|
@ -261,8 +261,8 @@ if [[ ! -z "${NODE_ACCELERATORS}" ]]; then
|
|||
fi
|
||||
|
||||
# Optional: Install cluster DNS.
|
||||
# Set CLUSTER_DNS_CORE_DNS to 'true' to install CoreDNS instead of kube-dns.
|
||||
CLUSTER_DNS_CORE_DNS="${CLUSTER_DNS_CORE_DNS:-false}"
|
||||
# Set CLUSTER_DNS_CORE_DNS to 'false' to install kube-dns instead of CoreDNS.
|
||||
CLUSTER_DNS_CORE_DNS="${CLUSTER_DNS_CORE_DNS:-true}"
|
||||
ENABLE_CLUSTER_DNS="${KUBE_ENABLE_CLUSTER_DNS:-true}"
|
||||
DNS_SERVER_IP="${KUBE_DNS_SERVER_IP:-10.0.0.10}"
|
||||
DNS_DOMAIN="${KUBE_DNS_DOMAIN:-cluster.local}"
|
||||
|
|
|
@ -268,8 +268,8 @@ if [[ ! -z "${NODE_ACCELERATORS}" ]]; then
|
|||
fi
|
||||
|
||||
# Optional: Install cluster DNS.
|
||||
# Set CLUSTER_DNS_CORE_DNS to 'true' to install CoreDNS instead of kube-dns.
|
||||
CLUSTER_DNS_CORE_DNS="${CLUSTER_DNS_CORE_DNS:-false}"
|
||||
# Set CLUSTER_DNS_CORE_DNS to 'false' to install kube-dns instead of CoreDNS.
|
||||
CLUSTER_DNS_CORE_DNS="${CLUSTER_DNS_CORE_DNS:-true}"
|
||||
ENABLE_CLUSTER_DNS="${KUBE_ENABLE_CLUSTER_DNS:-true}"
|
||||
DNS_SERVER_IP="10.0.0.10"
|
||||
DNS_DOMAIN="cluster.local"
|
||||
|
|
|
@ -847,7 +847,7 @@ ENABLE_NODE_LOGGING: $(yaml-quote ${ENABLE_NODE_LOGGING:-false})
|
|||
LOGGING_DESTINATION: $(yaml-quote ${LOGGING_DESTINATION:-})
|
||||
ELASTICSEARCH_LOGGING_REPLICAS: $(yaml-quote ${ELASTICSEARCH_LOGGING_REPLICAS:-})
|
||||
ENABLE_CLUSTER_DNS: $(yaml-quote ${ENABLE_CLUSTER_DNS:-false})
|
||||
CLUSTER_DNS_CORE_DNS: $(yaml-quote ${CLUSTER_DNS_CORE_DNS:-false})
|
||||
CLUSTER_DNS_CORE_DNS: $(yaml-quote ${CLUSTER_DNS_CORE_DNS:-true})
|
||||
DNS_SERVER_IP: $(yaml-quote ${DNS_SERVER_IP:-})
|
||||
DNS_DOMAIN: $(yaml-quote ${DNS_DOMAIN:-})
|
||||
ENABLE_DNS_HORIZONTAL_AUTOSCALER: $(yaml-quote ${ENABLE_DNS_HORIZONTAL_AUTOSCALER:-false})
|
||||
|
|
|
@ -306,7 +306,7 @@ const (
|
|||
KubeDNSVersion = "1.14.13"
|
||||
|
||||
// CoreDNSVersion is the version of CoreDNS to be deployed if it is used
|
||||
CoreDNSVersion = "1.2.2"
|
||||
CoreDNSVersion = "1.2.4"
|
||||
|
||||
// ClusterConfigurationKind is the string kind value for the ClusterConfiguration struct
|
||||
ClusterConfigurationKind = "ClusterConfiguration"
|
||||
|
|
|
@ -331,6 +331,12 @@ rules:
|
|||
verbs:
|
||||
- list
|
||||
- watch
|
||||
- apiGroups:
|
||||
- ""
|
||||
resources:
|
||||
- nodes
|
||||
verbs:
|
||||
- get
|
||||
`
|
||||
// CoreDNSClusterRoleBinding is the CoreDNS Clusterrolebinding manifest
|
||||
CoreDNSClusterRoleBinding = `
|
||||
|
|
|
@ -168,7 +168,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.10.3",
|
||||
KubeadmVersion: "v1.10.3",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.1.12",
|
||||
},
|
||||
},
|
||||
|
@ -207,7 +207,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.10.3",
|
||||
KubeadmVersion: "v1.10.3",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.1.12",
|
||||
},
|
||||
},
|
||||
|
@ -246,7 +246,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.0",
|
||||
KubeadmVersion: "v1.11.0",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -285,7 +285,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.10.5",
|
||||
KubeadmVersion: "v1.10.5", // Note: The kubeadm version mustn't be "downgraded" here
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.1.12",
|
||||
},
|
||||
},
|
||||
|
@ -305,7 +305,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.1",
|
||||
KubeadmVersion: "v1.11.1",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -364,7 +364,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.0-alpha.2",
|
||||
KubeadmVersion: "v1.11.0-alpha.2",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -404,7 +404,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.0-alpha.2",
|
||||
KubeadmVersion: "v1.11.0-alpha.2",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -445,7 +445,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.0-beta.1",
|
||||
KubeadmVersion: "v1.11.0-beta.1",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -486,7 +486,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.0-rc.1",
|
||||
KubeadmVersion: "v1.11.0-rc.1",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -527,7 +527,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.6-rc.1",
|
||||
KubeadmVersion: "v1.11.6-rc.1",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -568,7 +568,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.11.0-rc.1",
|
||||
KubeadmVersion: "v1.11.0-rc.1",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.18",
|
||||
},
|
||||
},
|
||||
|
@ -588,7 +588,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.12.0-alpha.2",
|
||||
KubeadmVersion: "v1.12.0-alpha.2",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.24",
|
||||
},
|
||||
},
|
||||
|
@ -641,7 +641,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.12.1",
|
||||
KubeadmVersion: "v1.12.1",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.24",
|
||||
},
|
||||
},
|
||||
|
@ -678,7 +678,7 @@ func TestGetAvailableUpgrades(t *testing.T) {
|
|||
KubeVersion: "v1.12.0",
|
||||
KubeadmVersion: "v1.12.0",
|
||||
DNSType: "coredns",
|
||||
DNSVersion: "1.2.2",
|
||||
DNSVersion: "1.2.4",
|
||||
EtcdVersion: "3.2.24",
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue