Compare commits

...

1 Commits

Author SHA1 Message Date
Andrei Kvapil
06b46d75bb Rename bundles
- paas-full
- paas-hosted
- distro-full
- distro-hosted

Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-04-04 12:38:51 +02:00
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
}