mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-05 00:15:51 +00:00
Separate and move fluxcd and fluxcd-operator from `core` to `system`. It should not be problem with self-update now, since we correctly set dependsOn option, it ensures ordered update of flux instance right after flux-operator. As part of https://github.com/aenix-io/cozystack/issues/184 and https://github.com/aenix-io/cozystack/issues/185 fixes https://github.com/aenix-io/cozystack/issues/169 Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
13 lines
329 B
Makefile
13 lines
329 B
Makefile
NAME=fluxcd-operator
|
|
NAMESPACE=cozy-fluxcd
|
|
|
|
include ../../../scripts/package-system.mk
|
|
|
|
apply-locally:
|
|
helm upgrade -i -n $(NAMESPACE) $(NAME) .
|
|
|
|
update:
|
|
rm -rf charts
|
|
helm pull oci://ghcr.io/controlplaneio-fluxcd/charts/flux-operator --untar --untardir charts
|
|
patch --no-backup-if-mismatch -p1 < patches/kubernetesEnvs.diff
|