Rename bundles (#65)

- paas-full
- paas-hosted
- distro-full
- distro-hosted

Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
This commit is contained in:
Andrei Kvapil
2024-04-04 15:54:14 +02:00
committed by GitHub
parent d68c6c68f6
commit f03f083c1a
5 changed files with 2 additions and 2 deletions

View File

@@ -21,10 +21,10 @@ flux_is_ok() {
install_basic_charts() {
bundle=$(kubectl get configmap -n cozy-system cozystack -o 'go-template={{index .data "bundle-name"}}')
if [ "$bundle" = "full-paas" ] || [ "$bundle" = "full-distro" ]; then
if [ "$bundle" = "paas-full" ] || [ "$bundle" = "distro-full" ]; then
make -C packages/system/cilium apply
fi
if [ "$bundle" = "full-paas" ]; then
if [ "$bundle" = "paas-full" ]; then
make -C packages/system/kubeovn apply
fi
}