File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed
Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 44* .dll
55* .so
66* .dylib
7- marketplace-mcp-server
8- marketplace-mcp-server- *
97bin /*
108
119# Test binary, built with `go test -c`
Original file line number Diff line number Diff line change @@ -44,6 +44,22 @@ GO_LINT_DIFF_TARGET ?= HEAD~
4444GO_LINT_ARGS ?= --fix
4545-include build/makelib/golang.mk
4646
47+ # ====================================================================================
48+ # Setup Helm
49+ USE_HELM3 = true
50+ HELM_BASE_URL = https://charts.upbound.io
51+ HELM_S3_BUCKET = upbound.charts
52+ HELM_CHARTS = marketplace-mcp-server
53+ HELM_VALUES_TEMPLATE_SKIPPED = true
54+
55+ -include build/makelib/k8s_tools.mk
56+ -include build/makelib/helm.mk
57+
58+ # ====================================================================================
59+ # CI
60+ helm.version :
61+ @echo $(HELM_CHART_VERSION )
62+
4763# Default target
4864all : clean deps test build
4965
@@ -103,7 +119,11 @@ publish-docker-stdio: docker-build-stdio
103119 @docker tag $(DOCKER_IMAGE ) :latest $(REGISTRY_ORG ) /$(DOCKER_IMAGE ) :$(VERSION )
104120 @docker push $(REGISTRY_ORG ) /$(DOCKER_IMAGE ) :$(VERSION )
105121
106- publish : publish-docker-stdio
122+ publish-docker-http : docker-build-http
123+ @docker tag $(DOCKER_IMAGE ) -http:latest $(REGISTRY_ORG ) /$(DOCKER_IMAGE ) -http:$(VERSION )
124+ @docker push $(REGISTRY_ORG ) /$(DOCKER_IMAGE ) -http:$(VERSION )
125+
126+ publish : publish-docker-stdio publish-docker-http
107127
108128# Run Docker containers
109129docker-run-stdio :
You can’t perform that action at this time.
0 commit comments