Skip to content

Commit

Permalink
fix the incorrect memory and storage setting (knative#8908)
Browse files Browse the repository at this point in the history
* fix the incorrect memory and storage setting

* update per ./hack/update-codegen.sh
  • Loading branch information
cdlliuy authored Aug 5, 2020
1 parent 6d46825 commit ec9ae72
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions config/core/configmaps/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ metadata:
labels:
serving.knative.dev/release: devel
annotations:
knative.dev/example-checksum: "0608517d"
knative.dev/example-checksum: "a409bec7"
data:
# This is the Go import path for the binary that is containerized
# and substituted here.
Expand Down Expand Up @@ -58,18 +58,18 @@ data:
# queueSidecarMemoryRequest is the requests.memory to set for the queue proxy container.
# If omitted, no value is specified and the system default is used.
queueSidecarMemoryRequest: "400m"
queueSidecarMemoryRequest: "400Mi"
# queueSidecarMemoryLimit is the limits.memory to set for the queue proxy container.
# If omitted, no value is specified and the system default is used.
queueSidecarMemoryLimit: "800m"
queueSidecarMemoryLimit: "800Mi"
# queueSidecarEphemeralStorageRequest is the requests.ephemeral-storage to
# set for the queue proxy sidecar container.
# If omitted, no value is specified and the system default is used.
queueSidecarEphemeralStorageRequest: "512m"
queueSidecarEphemeralStorageRequest: "512Mi"
# queueSidecarEphemeralStorageLimit is the limits.ephemeral-storage to set
# for the queue proxy sidecar container.
# If omitted, no value is specified and the system default is used.
queueSidecarEphemeralStorageLimit: "1024m"
queueSidecarEphemeralStorageLimit: "1024Mi"

0 comments on commit ec9ae72

Please sign in to comment.