Files
kata-containers/tools/packaging/kata-deploy/helm-chart/Makefile
Zvonko Kaiser 51690bc157 ci: Use helm to deploy kata-deploy
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>
2024-08-06 11:57:04 +02:00

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