Skip to content

Commit 04b95d1

Browse files
authored
Merge pull request #769 from mwielgus/vpa-deps-0.1.0
Version update in vpa deployments
2 parents 375e8c7 + bf82a8c commit 04b95d1

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

vertical-pod-autoscaler/deploy/admission-controller-deployment.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ spec:
1313
serviceAccountName: vpa-admission-controller
1414
containers:
1515
- name: admission-controller
16-
image: k8s.gcr.io/vpa-admission-controller:v0.0.1
16+
image: gcr.io/google_containers/vpa-admission-controller:v0.1.0
1717
imagePullPolicy: Always
1818
volumeMounts:
1919
- name: tls-certs
2020
mountPath: "/etc/tls-certs"
2121
readOnly: true
2222
resources:
2323
limits:
24-
cpu: 500m
25-
memory: 2000Mi
26-
requests:
27-
cpu: 250m
24+
cpu: 200m
2825
memory: 500Mi
26+
requests:
27+
cpu: 100m
28+
memory: 200Mi
2929
ports:
3030
- containerPort: 8000
3131
volumes:

vertical-pod-autoscaler/deploy/recommender-deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ spec:
1919
serviceAccountName: vpa-recommender
2020
containers:
2121
- name: recommender
22-
image: k8s.gcr.io/vpa-recommender:v0.0.1
22+
image: gcr.io/google_containers/vpa-recommender:v0.1.0
2323
imagePullPolicy: Always
2424
resources:
2525
limits:
26-
cpu: 500m
27-
memory: 2000Mi
26+
cpu: 200m
27+
memory: 1000Mi
2828
requests:
29-
cpu: 250m
29+
cpu: 100m
3030
memory: 500Mi
3131
ports:
3232
- containerPort: 8080

vertical-pod-autoscaler/deploy/updater-deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ spec:
1919
serviceAccountName: vpa-updater
2020
containers:
2121
- name: updater
22-
image: k8s.gcr.io/vpa-updater:v0.0.1
22+
image: gcr.io/google_containers/vpa-updater:v0.1.0
2323
imagePullPolicy: Always
2424
resources:
2525
limits:
26-
cpu: 500m
27-
memory: 2000Mi
26+
cpu: 200m
27+
memory: 1000Mi
2828
requests:
29-
cpu: 250m
29+
cpu: 100m
3030
memory: 500Mi
3131
ports:
3232
- containerPort: 8080

vertical-pod-autoscaler/hack/vpa-process-yaml.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ if [ $# -eq 0 ]; then
3131
exit 1
3232
fi
3333

34-
DEFAULT_REGISTRY="k8s.gcr.io"
35-
DEFAULT_TAG="v0.0.1"
34+
DEFAULT_REGISTRY="gcr.io/google_containers"
35+
DEFAULT_TAG="v0.1.0"
3636

3737
REGISTRY_TO_APPLY=${REGISTRY-$DEFAULT_REGISTRY}
3838
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}

0 commit comments

Comments
 (0)