14 lines
214 B
Makefile
14 lines
214 B
Makefile
DEPLOY_DIR := ./deploy
|
|
|
|
init:
|
|
- sh ${DEPLOY_DIR}/scripts/init-k8s.sh
|
|
|
|
up:
|
|
- sh ${DEPLOY_DIR}/scripts/start-k8s.sh
|
|
|
|
down:
|
|
- sh ${DEPLOY_DIR}/scripts/stop-k8s.sh
|
|
|
|
certs:
|
|
- bash ${DEPLOY_DIR}/scripts/gen-certs.sh
|