mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes - **New Features** - Enhanced deployment configurations with new init containers for various components, improving ownership management and initialization processes. - Added new properties to Custom Resource Definitions (CRDs) for better network resource management and flexibility. - Introduced new configuration options in `values.yaml` for enhanced functionality. - Implemented dynamic version-specific fetching for kube-ovn charts, improving version control. - Expanded permissions for ClusterRoles related to authentication and authorization. - **Bug Fixes** - Updated command structures and security contexts across multiple deployments to enhance security and functionality. - **Documentation** - Minor formatting adjustments made to improve clarity in configuration files. - **Chores** - Streamlined Dockerfile and Helm chart configurations for better maintainability and efficiency. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
34 lines
1.3 KiB
Makefile
34 lines
1.3 KiB
Makefile
KUBEOVN_TAG = v1.13.0
|
|
|
|
export NAME=kubeovn
|
|
export NAMESPACE=cozy-$(NAME)
|
|
|
|
include ../../../scripts/common-envs.mk
|
|
include ../../../scripts/package.mk
|
|
|
|
update:
|
|
rm -rf charts && mkdir -p charts/kube-ovn
|
|
tag=$$(git ls-remote --tags --sort="v:refname" https://github.com/kubeovn/kube-ovn | awk -F'[/^]' 'END{print $$3}') && \
|
|
curl -sSL https://github.com/kubeovn/kube-ovn/archive/refs/tags/$${tag}.tar.gz | \
|
|
tar xzvf - --strip 1 kube-ovn-$${tag#*v}/charts
|
|
patch --no-backup-if-mismatch -p4 < patches/cozyconfig.diff
|
|
patch --no-backup-if-mismatch -p4 < patches/mtu.diff
|
|
|
|
image:
|
|
docker buildx build images/kubeovn \
|
|
--provenance false \
|
|
--tag $(REGISTRY)/kubeovn:$(call settag,$(KUBEOVN_TAG)) \
|
|
--tag $(REGISTRY)/kubeovn:$(call settag,$(KUBEOVN_TAG)-$(TAG)) \
|
|
--cache-from type=registry,ref=$(REGISTRY)/kubeovn:latest \
|
|
--cache-to type=inline \
|
|
--metadata-file images/kubeovn.json \
|
|
--push=$(PUSH) \
|
|
--load=$(LOAD)
|
|
REGISTRY="$(REGISTRY)" \
|
|
yq -i '.global.registry.address = strenv(REGISTRY)' values.yaml
|
|
REPOSITORY="kubeovn" \
|
|
yq -i '.global.images.kubeovn.repository = strenv(REPOSITORY)' values.yaml
|
|
TAG="$(call settag,$(KUBEOVN_TAG))@$$(yq e '."containerimage.digest"' images/kubeovn.json -o json -r)" \
|
|
yq -i '.global.images.kubeovn.tag = strenv(TAG)' values.yaml
|
|
rm -f images/kubeovn.json
|