Merge pull request #421 from andyzhangx/remove-windows-memory-requests
fix: adjust memory requests and limits on Windows node
This commit is contained in:
commit
b54d6d9d24
|
|
@ -12,5 +12,5 @@ jobs:
|
|||
- uses: codespell-project/actions-codespell@master
|
||||
with:
|
||||
check_filenames: true
|
||||
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum,./release-tools/prow.sh
|
||||
skip: ./.git,./.github/workflows/codespell.yml,.git,*.png,*.jpg,*.svg,*.sum,./vendor,go.sum
|
||||
ignore_words_list: browseable
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -115,22 +115,22 @@ windows:
|
|||
resources:
|
||||
livenessProbe:
|
||||
limits:
|
||||
memory: 200Mi
|
||||
memory: 100Mi
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 20Mi
|
||||
memory: 40Mi
|
||||
nodeDriverRegistrar:
|
||||
limits:
|
||||
memory: 100Mi
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 40Mi
|
||||
smb:
|
||||
limits:
|
||||
memory: 200Mi
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 20Mi
|
||||
smb:
|
||||
limits:
|
||||
memory: 400Mi
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 20Mi
|
||||
memory: 40Mi
|
||||
|
||||
## Collection of annotations to add to all the pods
|
||||
podAnnotations: {}
|
||||
|
|
|
|||
|
|
@ -40,10 +40,10 @@ spec:
|
|||
value: unix://C:\\csi\\csi.sock
|
||||
resources:
|
||||
limits:
|
||||
memory: 200Mi
|
||||
memory: 100Mi
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 20Mi
|
||||
memory: 40Mi
|
||||
- name: node-driver-registrar
|
||||
image: k8s.gcr.io/sig-storage/csi-node-driver-registrar:v2.4.0
|
||||
args:
|
||||
|
|
@ -76,10 +76,10 @@ spec:
|
|||
mountPath: C:\registration
|
||||
resources:
|
||||
limits:
|
||||
memory: 200Mi
|
||||
memory: 100Mi
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 20Mi
|
||||
memory: 40Mi
|
||||
- name: smb
|
||||
image: mcr.microsoft.com/k8s/csi/smb-csi:latest
|
||||
imagePullPolicy: IfNotPresent
|
||||
|
|
@ -125,10 +125,10 @@ spec:
|
|||
mountPath: \\.\pipe\csi-proxy-smb-v1beta1
|
||||
resources:
|
||||
limits:
|
||||
memory: 400Mi
|
||||
memory: 200Mi
|
||||
requests:
|
||||
cpu: 10m
|
||||
memory: 20Mi
|
||||
memory: 40Mi
|
||||
volumes:
|
||||
- name: csi-proxy-fs-pipe-v1
|
||||
hostPath:
|
||||
|
|
|
|||
Loading…
Reference in New Issue