Skip to content
Snippets Groups Projects
Commit a7884a6c authored by Benoît Knecht's avatar Benoît Knecht Committed by Frederic Branczyk
Browse files

node-exporter: Use configured resources for kube-rbac-proxy (#279)

Since #132, `kube-rbac-proxy` resources can be configured in
`config.resources['kube-rbac-proxy']`, but the node-exporter daemonset
was still using hard-coded values.

This commit sets the request and limit resources to the configured
values for the `kube-rbac-proxy` container in the node-exporter pods.
parent c8273cf9
No related branches found
No related tags found
No related merge requests found
...@@ -118,8 +118,8 @@ local k = import 'ksonnet/ksonnet.beta.4/k.libsonnet'; ...@@ -118,8 +118,8 @@ local k = import 'ksonnet/ksonnet.beta.4/k.libsonnet';
// forgo declaring the host port, however it is important to declare // forgo declaring the host port, however it is important to declare
// it so that the scheduler can decide if the pod is schedulable. // it so that the scheduler can decide if the pod is schedulable.
container.withPorts(containerPort.new($._config.nodeExporter.port) + containerPort.withHostPort($._config.nodeExporter.port) + containerPort.withName('https')) + container.withPorts(containerPort.new($._config.nodeExporter.port) + containerPort.withHostPort($._config.nodeExporter.port) + containerPort.withName('https')) +
container.mixin.resources.withRequests({ cpu: '10m', memory: '20Mi' }) + container.mixin.resources.withRequests($._config.resources['kube-rbac-proxy'].requests) +
container.mixin.resources.withLimits({ cpu: '20m', memory: '60Mi' }) + container.mixin.resources.withLimits($._config.resources['kube-rbac-proxy'].limits) +
container.withEnv([ip]); container.withEnv([ip]);
local c = [nodeExporter, proxy]; local c = [nodeExporter, proxy];
......
...@@ -61,7 +61,7 @@ spec: ...@@ -61,7 +61,7 @@ spec:
resources: resources:
limits: limits:
cpu: 20m cpu: 20m
memory: 60Mi memory: 40Mi
requests: requests:
cpu: 10m cpu: 10m
memory: 20Mi memory: 20Mi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment