https://github.com/kubeflow/katib
Raw File
Tip revision: 64dafced83731a7a139e7e5e2cc822b13c780a89 authored by hougang liu on 29 April 2019, 02:59:40 UTC
share one grpc-health-probe
Tip revision: 64dafce
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