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

[Task] VX-279: Skipping the deployment of vortex-server in Travis #270

Merged
merged 2 commits into from
Aug 23, 2018
Merged
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: 4 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ apps.launch-prod:
.PHONY: apps.launch-testing
apps.launch-testing:
yq -y .services deploy/helm/config/testing.yaml | helm install --name vortex-services-testing --debug --wait -f - deploy/helm/services
yq -y .apps deploy/helm/config/testing.yaml | helm install --name vortex-apps-testing --debug --wait -f - --set vortex-server.controller.apiserverImageTag=$(SERVER_VERSION) deploy/helm/apps
yq -y .apps.prometheus deploy/helm/config/testing.yaml | helm install --name vortex-prometheus-testing --debug --wait -f - deploy/helm/apps/charts/prometheus
yq -y .apps.\"network-controller\" deploy/helm/config/testing.yaml | helm install --name vortex-nc-testing --debug --wait -f - deploy/helm/apps/charts/network-controller

.PHONY: apps.upgrade-dev
apps.upgrade-dev:
Expand All @@ -131,11 +132,6 @@ apps.upgrade-prod:
yq -y .services deploy/helm/config/production.yaml | helm upgrade vortex-services-prod --debug -f - deploy/helm/services
yq -y .apps deploy/helm/config/production.yaml | helm upgrade vortex-apps-prod --debug -f - --set vortex-server.controller.apiserverImageTag=$(SERVER_VERSION) deploy/helm/apps

.PHONY: apps.upgrade-testing
apps.upgrade-testing:
yq -y .services deploy/helm/config/testing.yaml | helm upgrade vortex-services-testing --debug -f - deploy/helm/services
yq -y .apps deploy/helm/config/testing.yaml | helm upgrade vortex-apps-testing --debug -f - --set vortex-server.controller.apiserverImageTag=$(SERVER_VERSION) deploy/helm/apps

.PHONY: apps.teardown-dev
apps.teardown-dev:
helm delete --purge vortex-services-dev
Expand All @@ -149,7 +145,8 @@ apps.teardown-prod:
.PHONY: apps.teardown-testing
apps.teardown-testing:
helm delete --purge vortex-services-testing
helm delete --purge vortex-apps-testing
helm delete --purge vortex-prometheus-testing
helm delete --purge vortex-nc-testing

## dockerfiles/ ########################################

Expand Down