Skip to content

Commit

Permalink
Bump version to 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
molepigeon committed Feb 4, 2019
1 parent c7af85a commit 939c65b
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.1.tgz
-rm $$(pwd)/portieris-0.5.2.tgz
helm package helm/portieris
helm install -n portieris $$(pwd)/portieris-0.5.1.tgz --set image.host=$(HUB) --set image.tag=$(TAG)
helm install -n portieris $$(pwd)/portieris-0.5.2.tgz --set image.host=$(HUB) --set image.tag=$(TAG)

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

helm.clean:
-helm/cleanup.sh portieris

e2e:
-helm package install/helm/portieris
@go test -v ./test/e2e --helmChart $$(pwd)/portieris-0.5.1.tgz
@go test -v ./test/e2e --helmChart $$(pwd)/portieris-0.5.2.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.5.1.tgz
@go test -v ./test/e2e --no-install --trust-image-policy --helmChart $$(pwd)/portieris-0.5.2.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.5.1.tgz
@go test -v ./test/e2e --no-install --trust-cluster-image-policy --helmChart $$(pwd)/portieris-0.5.2.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.5.1.tgz
@go test -v ./test/e2e --no-install --wildcards-image-policy --helmChart $$(pwd)/portieris-0.5.2.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.5.1.tgz
@go test -v ./test/e2e --no-install --armada --helmChart $$(pwd)/portieris-0.5.2.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.1.tgz
go test -v ./test/e2e --no-install --generic --helmChart $$(pwd)/portieris-0.5.2.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.1
version: 0.5.2
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 @@ -8,7 +8,7 @@ namespace: ibm-system
image:
host: docker.io/ibmcom
image: portieris
tag: 0.5.1
tag: 0.5.2
pullPolicy: Always

service:
Expand Down

0 comments on commit 939c65b

Please sign in to comment.