https://github.com/kubeflow/katib
Raw File
Tip revision: 7a8c0eebb580dc486f39f006636449f0b454e946 authored by Johnu George on 15 April 2019, 09:10:58 UTC
Adding initial v1alpha2 controller
Tip revision: 7a8c0ee
Makefile
# Run tests
test:
	go test ./pkg/... ./cmd/...

# Build Katib images
build: 
	sh scripts/v1alpha1/build.sh

# Deploy katib manifests into a k8s cluster
deploy: 
	sh scripts/v1alpha1/deploy.sh

# Run go fmt against code
fmt:
	go fmt ./pkg/... ./cmd/...

# Run go vet against code
vet:
	go vet ./pkg/... ./cmd/...

# Generate code
generate:
ifndef GOPATH
	$(error GOPATH not defined, please define GOPATH. Run "go help gopath" to learn more about GOPATH)
endif
	go generate ./pkg/... ./cmd/...
back to top