File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -47,44 +47,44 @@ cluster-up:
4747 @$(MAKE ) registry-all
4848 @$(MAKE ) cli
4949 @kill $(shell pgrep -f rerun) > /dev/null 2>&1 || true
50- @./ bin/cortex -c =./dev/config/cluster.yaml cluster up
50+ @source ./dev/config/env.sh 2> /dev/null ; ./ bin/cortex --config =./dev/config/cluster.yaml cluster up
5151 @$(MAKE ) kubectl
5252
5353cluster-up-y :
5454 @$(MAKE ) registry-all
5555 @$(MAKE ) cli
5656 @kill $(shell pgrep -f rerun) > /dev/null 2>&1 || true
57- @./ bin/cortex -c =./dev/config/cluster.yaml cluster up --yes
57+ @source ./dev/config/env.sh 2> /dev/null ; ./ bin/cortex --config =./dev/config/cluster.yaml cluster up --yes
5858 @$(MAKE ) kubectl
5959
6060cluster-down :
6161 @$(MAKE ) manager-local
6262 @$(MAKE ) cli
6363 @kill $(shell pgrep -f rerun) > /dev/null 2>&1 || true
64- @./ bin/cortex -c =./dev/config/cluster.yaml cluster down
64+ @source ./dev/config/env.sh 2> /dev/null ; ./ bin/cortex --config =./dev/config/cluster.yaml cluster down
6565
6666cluster-down-y :
6767 @$(MAKE ) manager-local
6868 @$(MAKE ) cli
6969 @kill $(shell pgrep -f rerun) > /dev/null 2>&1 || true
70- @./ bin/cortex -c =./dev/config/cluster.yaml cluster down --yes
70+ @source ./dev/config/env.sh 2> /dev/null ; ./ bin/cortex --config =./dev/config/cluster.yaml cluster down --yes
7171
7272cluster-info :
7373 @$(MAKE ) manager-local
7474 @$(MAKE ) cli
75- @./ bin/cortex -c =./dev/config/cluster.yaml cluster info
75+ @source ./dev/config/env.sh 2> /dev/null ; ./ bin/cortex --config =./dev/config/cluster.yaml cluster info
7676
7777cluster-configure :
7878 @$(MAKE ) registry-all
7979 @$(MAKE ) cli
8080 @kill $(shell pgrep -f rerun) > /dev/null 2>&1 || true
81- @./ bin/cortex -c =./dev/config/cluster.yaml cluster configure
81+ @source ./dev/config/env.sh 2> /dev/null ; ./ bin/cortex --config =./dev/config/cluster.yaml cluster configure
8282
8383cluster-configure-y :
8484 @$(MAKE ) registry-all
8585 @$(MAKE ) cli
8686 @kill $(shell pgrep -f rerun) > /dev/null 2>&1 || true
87- @./ bin/cortex -c =./dev/config/cluster.yaml cluster configure --yes
87+ @source ./dev/config/env.sh 2> /dev/null ; ./ bin/cortex --config =./dev/config/cluster.yaml cluster configure --yes
8888
8989# stop the in-cluster operator
9090operator-stop :
You can’t perform that action at this time.
0 commit comments