mirror of https://github.com/linkerd/linkerd2.git
network-validator: use limits and requests for ResourceQuota interop (#10254)
* adds limits and requests so that network-validator works properly in clusters with ResourceQuotas Signed-off-by: Steve Jenson <stevej@buoyant.io>
This commit is contained in:
parent
6bbe69b3b8
commit
41a8225b43
|
|
@ -2,6 +2,13 @@
|
|||
name: linkerd-network-validator
|
||||
image: {{.Values.proxy.image.name}}:{{.Values.proxy.image.version | default .Values.linkerdVersion }}
|
||||
imagePullPolicy: {{.Values.proxy.image.pullPolicy | default .Values.imagePullPolicy}}
|
||||
resources:
|
||||
limits:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
requests:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
|
|
|||
|
|
@ -183,6 +183,13 @@ spec:
|
|||
image: cr.l5d.io/linkerd/proxy:test-inject-proxy-version
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: linkerd-network-validator
|
||||
resources:
|
||||
limits:
|
||||
cpu: 50m
|
||||
memory: 10Mi
|
||||
requests:
|
||||
cpu: 50m
|
||||
memory: 10Mi
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
|
|
|||
|
|
@ -939,6 +939,13 @@ spec:
|
|||
- name: linkerd-network-validator
|
||||
image: cr.l5d.io/linkerd/proxy:install-proxy-version
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
limits:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
requests:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
|
@ -1375,6 +1382,13 @@ spec:
|
|||
- name: linkerd-network-validator
|
||||
image: cr.l5d.io/linkerd/proxy:install-proxy-version
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
limits:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
requests:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
|
@ -1694,6 +1708,13 @@ spec:
|
|||
- name: linkerd-network-validator
|
||||
image: cr.l5d.io/linkerd/proxy:install-proxy-version
|
||||
imagePullPolicy: IfNotPresent
|
||||
resources:
|
||||
limits:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
requests:
|
||||
cpu: "50m"
|
||||
memory: "10Mi"
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
capabilities:
|
||||
|
|
|
|||
Loading…
Reference in New Issue