Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
d17cd1a5
Commit
d17cd1a5
authored
Sep 22, 2016
by
MrHohn
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Split dns healthcheck into two different urls
parent
6d08910d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
112 additions
and
48 deletions
+112
-48
skydns-rc.yaml.base
cluster/addons/dns/skydns-rc.yaml.base
+17
-6
skydns-rc.yaml.in
cluster/addons/dns/skydns-rc.yaml.in
+17
-5
skydns-rc.yaml.sed
cluster/addons/dns/skydns-rc.yaml.sed
+17
-5
skydns-rc.yaml
cluster/gce/coreos/kube-manifests/addons/dns/skydns-rc.yaml
+31
-15
kubedns-rc.yaml
cluster/juju/layers/kubernetes/templates/kubedns-rc.yaml
+30
-17
No files found.
cluster/addons/dns/skydns-rc.yaml.base
View file @
d17cd1a5
...
...
@@ -35,7 +35,6 @@ spec:
labels:
k8s-app: kube-dns
version: v19
kubernetes.io/cluster-service: "true"
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
scheduler.alpha.kubernetes.io/tolerations: '[{"key":"CriticalAddonsOnly", "operator":"Exists"}]'
...
...
@@ -55,7 +54,7 @@ spec:
memory: 70Mi
livenessProbe:
httpGet:
path: /healthz
path: /healthz
-kubedns
port: 8080
scheme: HTTP
initialDelaySeconds: 60
...
...
@@ -85,6 +84,15 @@ spec:
protocol: TCP
- name: dnsmasq
image: gcr.io/google_containers/kube-dnsmasq-amd64:1.3
livenessProbe:
httpGet:
path: /healthz-dnsmasq
port: 8080
scheme: HTTP
initialDelaySeconds: 60
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
args:
- --cache-size=1000
- --no-resolv
...
...
@@ -98,7 +106,7 @@ spec:
name: dns-tcp
protocol: TCP
- name: healthz
image: gcr.io/google_containers/exechealthz-amd64:1.
1
image: gcr.io/google_containers/exechealthz-amd64:1.
2
resources:
limits:
memory: 50Mi
...
...
@@ -110,9 +118,12 @@ spec:
# net memory requested by the pod constant.
memory: 50Mi
args:
- -cmd=nslookup kubernetes.default.svc.__PILLAR__DNS__DOMAIN__ 127.0.0.1 >/dev/null && nslookup kubernetes.default.svc.__PILLAR__DNS__DOMAIN__ 127.0.0.1:10053 >/dev/null
- -port=8080
- -quiet
- --cmd=nslookup kubernetes.default.svc.__PILLAR__DNS__DOMAIN__ 127.0.0.1 >/dev/null
- --url=/healthz-dnsmasq
- --cmd=nslookup kubernetes.default.svc.__PILLAR__DNS__DOMAIN__ 127.0.0.1:10053 >/dev/null
- --url=/healthz-kubedns
- --port=8080
- --quiet
ports:
- containerPort: 8080
protocol: TCP
...
...
cluster/addons/dns/skydns-rc.yaml.in
View file @
d17cd1a5
...
...
@@ -55,7 +55,7 @@ spec:
memory: 70Mi
livenessProbe:
httpGet:
path: /healthz
path: /healthz
-kubedns
port: 8080
scheme: HTTP
initialDelaySeconds: 60
...
...
@@ -97,8 +97,17 @@ spec:
- containerPort: 53
name: dns-tcp
protocol: TCP
livenessProbe:
httpGet:
path: /healthz-dnsmasq
port: 8080
scheme: HTTP
initialDelaySeconds: 60
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 5
- name: healthz
image: gcr.io/google_containers/exechealthz-amd64:1.
1
image: gcr.io/google_containers/exechealthz-amd64:1.
2
resources:
limits:
memory: 50Mi
...
...
@@ -110,9 +119,12 @@ spec:
# net memory requested by the pod constant.
memory: 50Mi
args:
- -cmd=nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1 >/dev/null && nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1:10053 >/dev/null
- -port=8080
- -quiet
- --cmd=nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1 >/dev/null
- --url=/healthz-dnsmasq
- --cmd=nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1:10053 >/dev/null
- --url=/healthz-kubedns
- --port=8080
- --quiet
ports:
- containerPort: 8080
protocol: TCP
...
...
cluster/addons/dns/skydns-rc.yaml.sed
View file @
d17cd1a5
...
...
@@ -55,7 +55,7 @@ spec:
memor
y
:
70Mi
livenessProbe
:
httpGet
:
pa
th: /healthz
pa
th: /healthz
-kubedns
p
ort
:
8080
s
c
heme: HTTP
initialDelaySe
c
onds: 60
...
...
@@ -96,8 +96,17 @@ spec:
- containerPort: 53
na
me: dns-tcp
p
roto
c
ol: TCP
li
venessProbe:
h
tt
pG
et
:
path:
/
h
e
a
lthz-dnsmasq
p
ort
:
8080
s
c
heme: HTTP
initialDelaySe
c
onds: 60
timeoutSe
c
o
nds
:
5
successThreshold
:
1
failureThreshold
:
5
-
na
me: healthz
i
mage: gcr.io/google_containers/exechealthz-amd64:1.
1
i
mage: gcr.io/google_containers/exechealthz-amd64:1.
2
re
s
o
urces:
limits:
mem
o
ry: 50Mi
...
...
@@ -109,9 +118,12 @@ spec:
# net memory requested by the pod constant.
memor
y
:
50Mi
args
:
- -cmd=nslookup kubernetes.default.svc.$DNS_DOMAIN 127.0.0.1 >/dev/null
&&
nslookup kubernetes.default.svc.$DNS_DOMAIN 127.0.0.1
:
10053
>/
d
ev/
n
u
ll
-
-
p
ort
=
8080
-
-
q
u
i
et
- --cmd=nslookup kubernetes.default.svc.$DNS_DOMAIN 127.0.0.1 >/dev/null
- --url=/healthz-dnsmasq
- --cmd=nslookup kubernetes.default.svc.$DNS_DOMAIN 127.0.0.1
:
10053
>/
d
ev/
n
u
ll
-
--ur
l=
/
h
e
a
lthz-kubedns
-
--
p
ort
=
8080
-
--
q
u
i
et
p
ort
s
:
-
containerPort
:
8080
protocol
:
TC
P
...
...
cluster/gce/coreos/kube-manifests/addons/dns/skydns-rc.yaml
View file @
d17cd1a5
apiVersion
:
v1
kind
:
ReplicationController
metadata
:
name
:
kube-dns-v1
5
name
:
kube-dns-v1
9
namespace
:
kube-system
labels
:
k8s-app
:
kube-dns
version
:
v1
5
version
:
v1
9
kubernetes.io/cluster-service
:
"
true"
spec
:
replicas
:
${DNS_REPLICAS}
selector
:
k8s-app
:
kube-dns
version
:
v1
5
version
:
v1
9
template
:
metadata
:
labels
:
k8s-app
:
kube-dns
version
:
v15
kubernetes.io/cluster-service
:
"
true"
version
:
v19
annotations
:
scheduler.alpha.kubernetes.io/critical-pod
:
'
'
scheduler.alpha.kubernetes.io/tolerations
:
'
[{"key":"CriticalAddonsOnly",
"operator":"Exists"}]'
spec
:
containers
:
-
name
:
kubedns
...
...
@@ -28,14 +30,13 @@ spec:
# guaranteed class. Currently, this container falls into the
# "burstable" category so the kubelet doesn't backoff from restarting it.
limits
:
cpu
:
100m
memory
:
200Mi
requests
:
cpu
:
100m
memory
:
100Mi
livenessProbe
:
httpGet
:
path
:
/healthz
path
:
/healthz
-kubedns
port
:
8080
scheme
:
HTTP
initialDelaySeconds
:
60
...
...
@@ -63,7 +64,16 @@ spec:
name
:
dns-tcp-local
protocol
:
TCP
-
name
:
dnsmasq
image
:
gcr.io/google_containers/dnsmasq:1.1
image
:
gcr.io/google_containers/dnsmasq:1.3
livenessProbe
:
httpGet
:
path
:
/healthz-dnsmasq
port
:
8080
scheme
:
HTTP
initialDelaySeconds
:
60
timeoutSeconds
:
5
successThreshold
:
1
failureThreshold
:
5
args
:
-
--cache-size=1000
-
--no-resolv
...
...
@@ -77,18 +87,24 @@ spec:
name
:
dns-tcp
protocol
:
TCP
-
name
:
healthz
image
:
gcr.io/google_containers/exechealthz-amd64:1.
0
image
:
gcr.io/google_containers/exechealthz-amd64:1.
2
resources
:
# keep request = limit to keep this container in guaranteed class
limits
:
cpu
:
10m
memory
:
20Mi
memory
:
50Mi
requests
:
cpu
:
10m
memory
:
20Mi
# Note that this container shouldn't really need 50Mi of memory. The
# limits are set higher than expected pending investigation on #29688.
# The extra memory was stolen from the kubedns container to keep the
# net memory requested by the pod constant.
memory
:
50Mi
args
:
-
-cmd=nslookup kubernetes.default.svc.${DNS_DOMAIN} 127.0.0.1 >/dev/null
-
-port=8080
-
--cmd=nslookup kubernetes.default.svc.${DNS_DOMAIN} 127.0.0.1 >/dev/null
-
--url=/healthz-dnsmasq
-
--cmd=nslookup kubernetes.default.svc.${DNS_DOMAIN} 127.0.0.1:10053 >/dev/null
-
--url=/healthz-kubedns
-
--port=8080
-
--quiet
ports
:
-
containerPort
:
8080
protocol
:
TCP
...
...
cluster/juju/layers/kubernetes/templates/kubedns-rc.yaml
View file @
d17cd1a5
...
...
@@ -12,30 +12,30 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# This file should be kept in sync with cluster/images/hyperkube/dns-rc.yaml
# Warning: This is a file generated from the base underscore template file: skydns-rc.yaml.base
apiVersion
:
v1
kind
:
ReplicationController
metadata
:
name
:
kube-dns-v1
8
name
:
kube-dns-v1
9
namespace
:
kube-system
labels
:
k8s-app
:
kube-dns
version
:
v1
8
version
:
v1
9
kubernetes.io/cluster-service
:
"
true"
spec
:
replicas
:
{{
pillar
[
'
dns_replicas'
]
}}
selector
:
k8s-app
:
kube-dns
version
:
v1
8
version
:
v1
9
template
:
metadata
:
labels
:
k8s-app
:
kube-dns
version
:
v18
kubernetes.io/cluster-service
:
"
true"
version
:
v19
annotations
:
scheduler.alpha.kubernetes.io/critical-pod
:
'
'
scheduler.alpha.kubernetes.io/tolerations
:
'
[{"key":"CriticalAddonsOnly",
"operator":"Exists"}]'
spec
:
containers
:
-
name
:
kubedns
...
...
@@ -46,14 +46,13 @@ spec:
# guaranteed class. Currently, this container falls into the
# "burstable" category so the kubelet doesn't backoff from restarting it.
limits
:
cpu
:
100m
memory
:
200Mi
requests
:
cpu
:
100m
memory
:
100Mi
livenessProbe
:
httpGet
:
path
:
/healthz
path
:
/healthz
-kubedns
port
:
8080
scheme
:
HTTP
initialDelaySeconds
:
60
...
...
@@ -84,6 +83,15 @@ spec:
protocol
:
TCP
-
name
:
dnsmasq
image
:
gcr.io/google_containers/kube-dnsmasq-{{ arch }}:1.3
livenessProbe
:
httpGet
:
path
:
/healthz-dnsmasq
port
:
8080
scheme
:
HTTP
initialDelaySeconds
:
60
timeoutSeconds
:
5
successThreshold
:
1
failureThreshold
:
5
args
:
-
--cache-size=1000
-
--no-resolv
...
...
@@ -97,19 +105,24 @@ spec:
name
:
dns-tcp
protocol
:
TCP
-
name
:
healthz
image
:
gcr.io/google_containers/exechealthz-{{ arch }}:1.
0
image
:
gcr.io/google_containers/exechealthz-{{ arch }}:1.
2
resources
:
# keep request = limit to keep this container in guaranteed class
limits
:
cpu
:
10m
memory
:
20Mi
memory
:
50Mi
requests
:
cpu
:
10m
memory
:
20Mi
# Note that this container shouldn't really need 50Mi of memory. The
# limits are set higher than expected pending investigation on #29688.
# The extra memory was stolen from the kubedns container to keep the
# net memory requested by the pod constant.
memory
:
50Mi
args
:
-
-cmd=nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1 >/dev/null && nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1:10053 >/dev/null
-
-port=8080
-
-quiet
-
--cmd=nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1 >/dev/null
-
--url=/healthz-dnsmasq
-
--cmd=nslookup kubernetes.default.svc.{{ pillar['dns_domain'] }} 127.0.0.1:10053 >/dev/null
-
--url=/healthz-kubedns
-
--port=8080
-
--quiet
ports
:
-
containerPort
:
8080
protocol
:
TCP
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment