mirror of
https://github.com/CloudburstMC/Nukkit.git
synced 2024-11-11 11:29:31 +00:00
63b273feb5
* Initial helm chart, docker for arm64. * Add missing slash to local helm values file in gitignore. * Add in support to provide loadBalancerIP by helm value. * Ports should not be set on the service if using default ClusterIP svc type. * Revert svc condition. * Remove condition on service ports. * Add in nodePort key as a value configurable. * Provide a default nodePort value. * Make nodePort conditional.
86 lines
2.6 KiB
Makefile
86 lines
2.6 KiB
Makefile
DOCKER_REGISTRY = index.docker.io
|
|
IMAGE_NAME = nukkit
|
|
IMAGE_VERSION = latest
|
|
IMAGE_ORG = flaccid
|
|
IMAGE_TAG = $(DOCKER_REGISTRY)/$(IMAGE_ORG)/$(IMAGE_NAME):$(IMAGE_VERSION)
|
|
export DOCKER_BUILDKIT = 1
|
|
|
|
WORKING_DIR := $(shell pwd)
|
|
|
|
.DEFAULT_GOAL := docker-build
|
|
|
|
.PHONY: build run
|
|
|
|
# TODO: finish
|
|
#build:: ## builds nukkit
|
|
|
|
# TODO: finish
|
|
#run:: ## runs the binary
|
|
|
|
docker-release:: docker-build docker-push ## builds and pushes the docker image to the registry
|
|
docker-release-arm64:: docker-build-arm64 docker-push-arm64 ## builds and pushes the arm64 docker image to the registry
|
|
|
|
docker-push:: ## pushes the docker image to the registry
|
|
@docker push $(IMAGE_TAG)
|
|
|
|
docker-push-arm64:: ## pushes the arm64 docker image to the registry
|
|
@docker push $(DOCKER_REGISTRY)/$(IMAGE_ORG)/$(IMAGE_NAME):arm64
|
|
|
|
docker-build:: ## builds the docker image locally
|
|
@echo http_proxy=$(HTTP_PROXY) http_proxy=$(HTTPS_PROXY)
|
|
@echo building $(IMAGE_TAG)
|
|
@docker build --pull \
|
|
--build-arg=http_proxy=$(HTTP_PROXY) \
|
|
--build-arg=https_proxy=$(HTTPS_PROXY) \
|
|
-t $(IMAGE_TAG) $(WORKING_DIR)
|
|
|
|
docker-build-arm64:: ## builds the arm64 docker image locally
|
|
@echo http_proxy=$(HTTP_PROXY) http_proxy=$(HTTPS_PROXY)
|
|
@echo building $(IMAGE_TAG)
|
|
@docker build --pull \
|
|
--build-arg=http_proxy=$(HTTP_PROXY) \
|
|
--build-arg=https_proxy=$(HTTPS_PROXY) \
|
|
-f Dockerfile.arm64 \
|
|
-t $(DOCKER_REGISTRY)/$(IMAGE_ORG)/$(IMAGE_NAME):arm64 $(WORKING_DIR)
|
|
|
|
docker-run:: ## runs the docker image locally
|
|
@docker run \
|
|
-it \
|
|
-p 19132:19132 \
|
|
$(DOCKER_REGISTRY)/$(IMAGE_ORG)/$(IMAGE_NAME):$(IMAGE_VERSION)
|
|
|
|
helm-install:: ## installs using helm from chart in repo
|
|
@helm install --name nukkit ./charts/nukkit
|
|
|
|
helm-upgrade:: ## upgrades deployed helm release
|
|
@helm upgrade nukkit ./charts/nukkit
|
|
|
|
helm-purge:: ## deletes and purges deployed helm release
|
|
@helm delete --purge nukkit
|
|
|
|
helm-render:: ## prints out the rendered chart
|
|
@helm install --dry-run --debug charts/nukkit
|
|
|
|
helm-validate:: ## runs a lint on the helm chart
|
|
@helm lint charts/nukkit
|
|
|
|
install-ghr:: ## installs ghr
|
|
@cd /tmp
|
|
@wget https://github.com/tcnksm/ghr/releases/download/v0.12.2/ghr_v0.12.2_linux_amd64.tar.gz
|
|
@tar zxvf ghr_v0.12.2_linux_amd64.tar.gz
|
|
@sudo mv ghr_v0.12.2_linux_amd64/ghr /usr/local/bin/
|
|
|
|
# a help target including self-documenting targets (see the awk statement)
|
|
define HELP_TEXT
|
|
Usage: make [TARGET]... [MAKEVAR1=SOMETHING]...
|
|
|
|
Available targets:
|
|
endef
|
|
export HELP_TEXT
|
|
help: ## this help target
|
|
@cat .banner
|
|
@echo
|
|
@echo "$$HELP_TEXT"
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / \
|
|
{printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|