mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-05-17 04:52:23 +00:00
Rather then modifying the kata-depoy scripts let's use Helm and create a values.yaml that can be used to render the final templates Signed-off-by: Zvonko Kaiser <zkaiser@nvidia.com>
19 lines
334 B
Makefile
19 lines
334 B
Makefile
# Copyright (c) 2024 NVIDIA Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
VERSION_FILE := ../../../../VERSION
|
|
|
|
release:
|
|
sed -i 's/appVersion: .*/appVersion: $(shell cat $(VERSION_FILE))/g' kata-deploy/Chart.yaml
|
|
all: package
|
|
|
|
package: helm release
|
|
$(HELM) package ./kata-deploy
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm kata-deploy-*.tgz
|