Skip to content

Commit

Permalink
fixes 'kfctl - provide option (default) to statically link ksonnet an…
Browse files Browse the repository at this point in the history
…d kustomize into kfctl kubeflow#2635'
  • Loading branch information
Kam D Kasravi committed Mar 11, 2019
1 parent 68b231e commit 8c11e3f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions bootstrap/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,13 @@ export GO = go
$(GO) build -i -gcflags 'all=-N -l' -o ../../../bin/$*.so -buildmode=plugin $*.go

%.init:
@echo kfctl init test/$* $(VERBOSE) --platform $* --project $(GCLOUD_PROJECT) && \
@echo kfctl init test/$* $(VERBOSE) --platform $* --project $(GCLOUD_PROJECT) --version pull/2673 && \
GOOGLE_APPLICATION_CREDENTIALS=$(GOOGLE_APPLICATION_CREDENTIALS) PLUGINS_ENVIRONMENT=$(PLUGINS_ENVIRONMENT) kfctl init $(PWD)/test/$* $(VERBOSE) --platform $* --project $(GCLOUD_PROJECT) --version pull/2673

%.init-no-platform:
@echo kfctl init test/$* $(VERBOSE) --version pull/2673 && \
kfctl init $(PWD)/test/$* $(VERBOSE) --version pull/2673

%.generate:
@echo kfctl generate all $(VERBOSE) '(--platform '$*')' && \
cd test/$* && \
Expand Down Expand Up @@ -122,6 +126,6 @@ run-local-docker:
clean:
rm -rf test && mkdir test

test-init: clean install dockerfordesktop.init minikube.init gcp.init
test-init: clean install dockerfordesktop.init minikube.init gcp.init none.init-no-platform

test-generate: test-init dockerfordesktop.generate minikube.generate gcp.generate
test-generate: test-init dockerfordesktop.generate minikube.generate gcp.generate none.generate

0 comments on commit 8c11e3f

Please sign in to comment.