Revision fd4c21c02cdc5e03e36a5c7a22bdb16db41360e7 authored by Richard Liu on 01 May 2019, 03:26:55 UTC, committed by Kubernetes Prow Robot on 01 May 2019, 03:26:55 UTC
* Add metrics collector spec to v1alpha2 API

* Delete metricsCollectorType

* Fix

* Fix unit test
1 parent 70c3ccd
Raw File
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