Skip to content
Snippets Groups Projects
Verified Commit ceee71d2 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

add flux version check to install script

parent 97183fb1
No related merge requests found
if [ "$(flux --version)" != "flux version 0.14.2" ]; then
echo "The OpenAppStack installation only works with Flux version 0.14.2"
exit 1;
fi
......@@ -2,6 +2,8 @@
set -euo pipefail
bash $(dirname "$0")/flux-version-check.sh
# This kustomization's only purpose is to add the kustomization that is in the
# flxu2/cluster/optional/nextcloud folder. After this kustomization is applied
# an `add-nextcloud` kustomization will be present on the cluster, as well as a
......
......@@ -2,6 +2,8 @@
set -euo pipefail
bash $(dirname "$0")/flux-version-check.sh
flux install \
--network-policy=false \
--watch-all-namespaces=true \
......
......@@ -2,6 +2,8 @@
set -euo pipefail
bash $(dirname "$0")/flux-version-check.sh
# This kustomization's only purpose is to add the kustomization that is in the
# flxu2/cluster/optional/rocketchat folder. After this kustomization is applied
# an `add-rocketchat` kustomization will be present on the cluster, as well as a
......
......@@ -2,6 +2,8 @@
set -euo pipefail
bash $(dirname "$0")/flux-version-check.sh
# This kustomization's only purpose is to add the kustomization that is in the
# flxu2/cluster/optional/velero folder. After this kustomization is applied
# an `add-velero` kustomization will be present on the cluster, as well as a
......
......@@ -2,6 +2,8 @@
set -euo pipefail
bash $(dirname "$0")/flux-version-check.sh
# This kustomization's only purpose is to add the kustomization that is in the
# flxu2/cluster/optional/wordpress folder. After this kustomization is applied
# an `add-wordpress` kustomization will be present on the cluster, as well as a
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment