helm install

This commit is contained in:
Harivansh Rathi 2026-02-07 20:05:55 -05:00
parent f3abdfe7b8
commit 44fe1e1f5c
4 changed files with 90 additions and 4 deletions

View file

@ -1,4 +1,4 @@
.PHONY: build install clean fmt vet lint
.PHONY: build install clean fmt vet lint crds helm-lint helm-template
build:
go build -o agentikube ./cmd/agentikube
@ -16,3 +16,16 @@ 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