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 749706b commit 9c802e5Copy full SHA for 9c802e5
Makefile
@@ -31,6 +31,7 @@ kubectl:
31
@kubectl config set-context --current --namespace="cortex"
32
33
cortex-up:
34
+ @./dev/registry.sh manager
35
@./cortex.sh -c=./dev/config/cortex.sh install
36
$(MAKE) kubectl
37
dev/registry.sh
@@ -117,6 +117,9 @@ env=${2:-""}
117
if [ "$cmd" = "create" ]; then
118
create_registry
119
120
+elif [ "$cmd" = "manager" ]; then
121
+ build $ROOT/images/manager manager latest
122
+
123
elif [ "$cmd" = "update" ]; then
124
if [ "$env" != "dev" ]; then
125
build_and_push $ROOT/images/manager manager latest
0 commit comments