mirror of
https://github.com/harivansh-afk/agentikube.git
synced 2026-04-15 10:05:14 +00:00
31 lines
519 B
Makefile
31 lines
519 B
Makefile
.PHONY: build install clean fmt vet lint crds helm-lint helm-template
|
|
|
|
build:
|
|
go build -o agentikube ./cmd/agentikube
|
|
|
|
install:
|
|
go install ./cmd/agentikube
|
|
|
|
clean:
|
|
rm -f agentikube
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
lint: fmt vet
|
|
|
|
crds:
|
|
./scripts/download-crds.sh
|
|
|
|
helm-lint:
|
|
helm lint chart/agentikube/
|
|
|
|
helm-template:
|
|
helm template agentikube chart/agentikube/ \
|
|
--namespace sandboxes \
|
|
--set storage.filesystemId=fs-test \
|
|
--set sandbox.image=test:latest \
|
|
--set compute.clusterName=test-cluster
|