Skip to content

Commit

Permalink
Merge pull request #3070 from bskiba/master
Browse files Browse the repository at this point in the history
Switch VPA default deployment to 0.8.0
  • Loading branch information
k8s-ci-robot authored Apr 20, 2020
2 parents fdbe28e + 898fdeb commit 40d5205
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
serviceAccountName: vpa-admission-controller
containers:
- name: admission-controller
image: k8s.gcr.io/vpa-admission-controller:0.6.3
image: us.gcr.io/k8s-artifacts-prod/autoscaling/vpa-admission-controller:0.8.0
imagePullPolicy: Always
env:
- name: NAMESPACE
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/deploy/recommender-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
serviceAccountName: vpa-recommender
containers:
- name: recommender
image: k8s.gcr.io/vpa-recommender:0.6.3
image: us.gcr.io/k8s-artifacts-prod/autoscaling/vpa-recommender:0.8.0
imagePullPolicy: Always
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/deploy/updater-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
serviceAccountName: vpa-updater
containers:
- name: updater
image: k8s.gcr.io/vpa-updater:0.6.3
image: us.gcr.io/k8s-artifacts-prod/autoscaling/vpa-updater:0.8.0
imagePullPolicy: Always
resources:
limits:
Expand Down
4 changes: 2 additions & 2 deletions vertical-pod-autoscaler/hack/vpa-process-yaml.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ if [ $# -eq 0 ]; then
exit 1
fi

DEFAULT_REGISTRY="k8s.gcr.io"
DEFAULT_TAG="0.6.3"
DEFAULT_REGISTRY="us.gcr.io/k8s-artifacts-prod/autoscaling"
DEFAULT_TAG="0.8.0"

REGISTRY_TO_APPLY=${REGISTRY-$DEFAULT_REGISTRY}
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}
Expand Down
2 changes: 1 addition & 1 deletion vertical-pod-autoscaler/hack/vpa-process-yamls.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if [ $# -gt 2 ]; then
fi

ACTION=$1
COMPONENTS="vpa-beta2-crd vpa-rbac updater-deployment recommender-deployment admission-controller-deployment"
COMPONENTS="vpa-v1-crd vpa-rbac updater-deployment recommender-deployment admission-controller-deployment"
if [ ${ACTION} == delete ]; then
COMPONENTS+=" vpa-beta2-crd"
fi
Expand Down

0 comments on commit 40d5205

Please sign in to comment.