Skip to content

Commit

Permalink
Bump version to 0.5.1 (IBM#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
molepigeon authored and liamawhite committed Dec 7, 2018
1 parent 4fb991e commit ed83cd3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,21 +37,21 @@ vet:
@set -e; for LINE in ${GOPACKAGES}; do go vet $${LINE} ; done

helm.install.local: push
-rm $$(pwd)/portieris-0.5.0.tgz
-rm $$(pwd)/portieris-0.5.1.tgz
helm package helm/portieris
helm install -n portieris $$(pwd)/portieris-0.5.0.tgz --set image.host=$(HUB) --set image.tag=$(TAG)
helm install -n portieris $$(pwd)/portieris-0.5.1.tgz --set image.host=$(HUB) --set image.tag=$(TAG)

helm.install:
-rm $$(pwd)/portieris-0.5.0.tgz
-rm $$(pwd)/portieris-0.5.1.tgz
helm package helm/portieris
helm install -n portieris $$(pwd)/portieris-0.5.0.tgz
helm install -n portieris $$(pwd)/portieris-0.5.1.tgz

helm.clean:
-helm/cleanup.sh portieris

e2e:
-helm package install/helm/portieris
@go test -v ./test/e2e --helmChart $$(pwd)/portieris-0.5.0.tgz
@go test -v ./test/e2e --helmChart $$(pwd)/portieris-0.5.1.tgz

e2e.local: helm.install.local e2e.quick

Expand All @@ -64,23 +64,23 @@ e2e.quick.ics: e2e.quick.trust.imagepolicy e2e.quick.trust.clusterimagepolicy e2
- kubectl delete namespace $$(kubectl get namespaces | grep -v ibm | grep -v kube | grep -v default | awk '{ print $$1 }' | grep -v NAME)

e2e.quick.trust.imagepolicy:
@go test -v ./test/e2e --no-install --trust-image-policy --helmChart $$(pwd)/portieris-0.2.0.tgz
@go test -v ./test/e2e --no-install --trust-image-policy --helmChart $$(pwd)/portieris-0.5.1.tgz
-kubectl delete namespace $$(kubectl get namespaces | grep -v ibm | grep -v kube | grep -v default | awk '{ print $$1 }' | grep -v NAME)

e2e.quick.trust.clusterimagepolicy:
@go test -v ./test/e2e --no-install --trust-cluster-image-policy --helmChart $$(pwd)/portieris-0.2.0.tgz
@go test -v ./test/e2e --no-install --trust-cluster-image-policy --helmChart $$(pwd)/portieris-0.5.1.tgz
-kubectl delete namespace $$(kubectl get namespaces | grep -v ibm | grep -v kube | grep -v default | awk '{ print $$1 }' | grep -v NAME)

e2e.quick.wildcards:
@go test -v ./test/e2e --no-install --wildcards-image-policy --helmChart $$(pwd)/portieris-0.2.0.tgz
@go test -v ./test/e2e --no-install --wildcards-image-policy --helmChart $$(pwd)/portieris-0.5.1.tgz
-kubectl delete namespace $$(kubectl get namespaces | grep -v ibm | grep -v kube | grep -v default | awk '{ print $$1 }' | grep -v NAME)

e2e.quick.armada:
@go test -v ./test/e2e --no-install --armada --helmChart $$(pwd)/portieris-0.2.0.tgz
@go test -v ./test/e2e --no-install --armada --helmChart $$(pwd)/portieris-0.5.1.tgz
-kubectl delete namespace $$(kubectl get namespaces | grep -v ibm | grep -v kube | grep -v default | awk '{ print $$1 }' | grep -v NAME)

e2e.quick.generic:
go test -v ./test/e2e --no-install --generic --helmChart $$(pwd)/portieris-0.5.0.tgz
go test -v ./test/e2e --no-install --generic --helmChart $$(pwd)/portieris-0.5.1.tgz
-kubectl delete namespace $$(kubectl get namespaces | grep -v ibm | grep -v kube | grep -v default | awk '{ print $$1 }' | grep -v NAME)

e2e.helm:
Expand Down
2 changes: 1 addition & 1 deletion helm/portieris/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

apiVersion: v1
name: portieris
version: 0.5.0
version: 0.5.1
description: Admission Controller webhook for enforcing image trust in your cluster
maintainer:
- [email protected]
Expand Down
2 changes: 1 addition & 1 deletion helm/portieris/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 3
image:
host: docker.io/ibmcom
image: portieris
tag: 0.5.0
tag: 0.5.1
pullPolicy: Always

service:
Expand Down

0 comments on commit ed83cd3

Please sign in to comment.