Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release] bump version v0.1.6 #193

Merged
merged 3 commits into from
Jul 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## vortex server version
SERVER_VERSION = v0.1.5
SERVER_VERSION = v0.1.6
## Folder content generated files
BUILD_FOLDER = ./build

Expand Down Expand Up @@ -96,11 +96,16 @@ apps.init-helm:
kubectl create clusterrolebinding tiller-cluster-rule --clusterrole=cluster-admin --serviceaccount=kube-system:tiller
kubectl patch deploy --namespace kube-system tiller-deploy -p '{"spec":{"template":{"spec":{"serviceAccount":"tiller"}}}}'

.PHONY: apps.launch-apps
apps.launch-apps:
.PHONY: apps.launch
apps.launch:
helm install --name vortex-foundation --debug --wait --set global.environment=local deploy/helm/foundation
helm install --name vortex-apps --debug --wait --set global.environment=local deploy/helm/apps/

.PHONY: apps.upgrade
apps.upgrade:
helm upgrade vortex-foundation --debug --wait --set global.environment=local deploy/helm/foundation
helm upgrade vortex-apps --debug --wait --set global.environment=local deploy/helm/apps/

.PHONY: apps.teardown
apps.teardown:
helm ls --short | xargs -i helm delete --purge {}
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/apps/charts/vortex-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ global:

replicaCount: 1
image:
tag: v0.1.5
tag: v0.1.6

service:
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ spec:
serviceAccountName: vortex-admin
containers:
- name: vortex-server
image: sdnvortex/vortex:v0.1.5
image: sdnvortex/vortex:v0.1.6
ports:
- containerPort: 7890