https://github.com/kubeflow/katib
Raw File
Tip revision: 9cc11754e2118b8a3654062491f18533c4d4e9f1 authored by andreyvelich on 02 April 2019, 18:44:40 UTC
Update API for NAS in v1alpha2
Tip revision: 9cc1175
Makefile
# Run tests
test:
	go test ./pkg/... ./cmd/...

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

# Deploy katib manifests into a k8s cluster
deploy: 
	sh scripts/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