fix: Unified helm version number (#422)
Signed-off-by: yuluo-yx <yuluo08290126@gmail.com>
This commit is contained in:
parent
369a8d28a4
commit
9f400bbcb9
|
@ -1,6 +1,6 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: mongodb
|
- name: mongodb
|
||||||
repository: oci://registry-1.docker.io/bitnamicharts
|
repository: oci://registry-1.docker.io/bitnamicharts
|
||||||
version: 15.1.3
|
version: 15.1.7
|
||||||
digest: sha256:40d43cd158585ff78c94e3eb2f46d2410488923a1e9242bf5c8c8af5bac0707d
|
digest: sha256:e573c76d3c75c7e5bc61cbf1e7de46bbf59837de68ac06ebdfe1fa32337a6f58
|
||||||
generated: "2024-04-09T11:17:10.1150205+08:00"
|
generated: "2024-05-09T11:36:47.7429098+08:00"
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
V0.0.16
|
|
|
@ -26,9 +26,6 @@ SHELL := /bin/bash
|
||||||
# Set the root package
|
# Set the root package
|
||||||
ROOT_PACKAGE = .
|
ROOT_PACKAGE = .
|
||||||
|
|
||||||
# Get release version from VERSION file
|
|
||||||
RELEASE_VERSION = $(shell cat helm/api-testing/VERSION)
|
|
||||||
|
|
||||||
# REV is the short git sha of latest commit.
|
# REV is the short git sha of latest commit.
|
||||||
REV=$(shell git rev-parse --short HEAD)
|
REV=$(shell git rev-parse --short HEAD)
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ include tools/make/env.mk
|
||||||
|
|
||||||
OCI_REGISTRY ?= oci://${REGISTRY}
|
OCI_REGISTRY ?= oci://${REGISTRY}
|
||||||
CHART_NAME ?= api-testing
|
CHART_NAME ?= api-testing
|
||||||
CHART_VERSION ?= ${RELEASE_VERSION}
|
CHART_VERSION ?= ${HELM_VERSION}
|
||||||
|
|
||||||
##@ Helm
|
##@ Helm
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ helm-pkg: ## Package API Testing helm chart.
|
||||||
helm-pkg: helm-dev-update
|
helm-pkg: helm-dev-update
|
||||||
@$(LOG_TARGET)
|
@$(LOG_TARGET)
|
||||||
# e.g. api-testing-v0.0.3-helm.tgz
|
# e.g. api-testing-v0.0.3-helm.tgz
|
||||||
helm package helm/${CHART_NAME} --version ${HELM_VERSION}-helm --app-version ${CHART_VERSION} --destination ${OUTPUT_DIR}/charts/
|
helm package helm/${CHART_NAME} --version ${CHART_VERSION}-helm --app-version ${CHART_VERSION} --destination ${OUTPUT_DIR}/charts/
|
||||||
|
|
||||||
.PHONY: helm-push
|
.PHONY: helm-push
|
||||||
helm-push:
|
helm-push:
|
||||||
|
|
Loading…
Reference in New Issue