Skip to content

Commit

Permalink
Merge pull request #769 from mwielgus/vpa-deps-0.1.0
Browse files Browse the repository at this point in the history
Version update in vpa deployments
  • Loading branch information
mwielgus committed Mar 30, 2018
2 parents 375e8c7 + bf82a8c commit 04b95d1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ spec:
serviceAccountName: vpa-admission-controller
containers:
- name: admission-controller
image: k8s.gcr.io/vpa-admission-controller:v0.0.1
image: gcr.io/google_containers/vpa-admission-controller:v0.1.0
imagePullPolicy: Always
volumeMounts:
- name: tls-certs
mountPath: "/etc/tls-certs"
readOnly: true
resources:
limits:
cpu: 500m
memory: 2000Mi
requests:
cpu: 250m
cpu: 200m
memory: 500Mi
requests:
cpu: 100m
memory: 200Mi
ports:
- containerPort: 8000
volumes:
Expand Down
8 changes: 4 additions & 4 deletions vertical-pod-autoscaler/deploy/recommender-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ spec:
serviceAccountName: vpa-recommender
containers:
- name: recommender
image: k8s.gcr.io/vpa-recommender:v0.0.1
image: gcr.io/google_containers/vpa-recommender:v0.1.0
imagePullPolicy: Always
resources:
limits:
cpu: 500m
memory: 2000Mi
cpu: 200m
memory: 1000Mi
requests:
cpu: 250m
cpu: 100m
memory: 500Mi
ports:
- containerPort: 8080
8 changes: 4 additions & 4 deletions vertical-pod-autoscaler/deploy/updater-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ spec:
serviceAccountName: vpa-updater
containers:
- name: updater
image: k8s.gcr.io/vpa-updater:v0.0.1
image: gcr.io/google_containers/vpa-updater:v0.1.0
imagePullPolicy: Always
resources:
limits:
cpu: 500m
memory: 2000Mi
cpu: 200m
memory: 1000Mi
requests:
cpu: 250m
cpu: 100m
memory: 500Mi
ports:
- containerPort: 8080
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="v0.0.1"
DEFAULT_REGISTRY="gcr.io/google_containers"
DEFAULT_TAG="v0.1.0"

REGISTRY_TO_APPLY=${REGISTRY-$DEFAULT_REGISTRY}
TAG_TO_APPLY=${TAG-$DEFAULT_TAG}
Expand Down

0 comments on commit 04b95d1

Please sign in to comment.