mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 01:06:27 +00:00
This PR introduces a new fluxcd-kustomize.sh script that can be used as post-processor for helm for adding a common fluxcd labels. This is very useful for `make diff`, so it will not include diff between these labels anymore Also for debugging specific kustomize cases, eg: - https://github.com/fluxcd/helm-controller/issues/283 - https://github.com/fluxcd/flux2/issues/4368 Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
12 lines
359 B
Makefile
12 lines
359 B
Makefile
export NAME=capi-operator
|
|
export NAMESPACE=cozy-cluster-api
|
|
|
|
include ../../../scripts/package-system.mk
|
|
|
|
update:
|
|
rm -rf charts
|
|
helm repo add capi-operator https://kubernetes-sigs.github.io/cluster-api-operator
|
|
helm repo update capi-operator
|
|
helm pull capi-operator/cluster-api-operator --untar --untardir charts
|
|
rm -rf charts/cluster-api-operator/charts
|