We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0b8ada commit 3ef1f6dCopy full SHA for 3ef1f6d
Makefile
@@ -6,8 +6,10 @@
6
install-litmus \
7
install-prometheus
8
9
-# Deploys the partner and test pods and the operator
+# Deploys the partner and test pods and the operator. GNU sed is required.
10
+# MacOS has FreeBSD sed by default, which fails on --version.
11
install:
12
+ sed --version >/dev/null 2>&1 || { printf >&2 'Install GNU sed.\n'; exit 1; }
13
./scripts/fix-node-labels.sh
14
./scripts/deploy-multus-network.sh
15
./scripts/deploy-resource-quota.sh
0 commit comments