-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
101 lines (88 loc) · 3.14 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
TARGET_OS ?= linux
TARGET_ARCH ?= amd64
OUT_DIR := ./dist
.DEFAULT_GOAL := all
ifneq ($(wildcard ./private/charts/opencomponents-registry),)
VALUES_PATH := ./private/charts/opencomponents-registry/values.yaml
else
VALUES_PATH := ./charts/opencomponents-registry/values.yaml
endif
DOCKER_REGISTRY ?= ghcr.io/jr200
IMAGE_TAG ?= local
IMAGE_NAME ?= opencomponents-registry
K8S_NAMESPACE ?= opencomponents-registry
################################################################################
# Target: start-local #
################################################################################
.PHONY: start-local
start-local:
npm run start
################################################################################
# Target: docker-run #
################################################################################
.PHONY: docker-run
docker-run:
podman run \
--rm \
--env-file .env \
-p 9000:80 \
$(IMAGE_NAME):$(IMAGE_TAG)
################################################################################
# Target: docker-debug
################################################################################
.PHONY: docker-debug
docker-debug:
podman run \
--rm \
--env-file .env \
-it \
--entrypoint sh \
-p 9000:80 \
$(IMAGE_NAME):$(IMAGE_TAG)
################################################################################
# Target: docker-build #
################################################################################
.PHONY: docker-build
docker-build:
podman build \
-f docker/Dockerfile \
-t $(IMAGE_NAME):$(IMAGE_TAG) \
--layers=true \
.
################################################################################
# Target: helm chart dependencies
################################################################################
.PHONY: chart-deps
chart-deps:
helm dependency build charts/opencomponents-registry --skip-refresh
kubectl create namespace $(K8S_NAMESPACE) || echo "OK"
################################################################################
# Target: helm chart install
################################################################################
.PHONY: chart-install
chart-install: chart-deps
helm upgrade -n $(K8S_NAMESPACE) opencomponents-registry \
--install \
-f $(VALUES_PATH) \
charts/opencomponents-registry
################################################################################
# Target: helm template
################################################################################
.PHONY: chart-template
chart-template: chart-deps
helm template -n $(K8S_NAMESPACE) opencomponents-registry \
-f $(VALUES_PATH) \
--debug \
charts/opencomponents-registry
################################################################################
# Target: helm template
################################################################################
.PHONY: chart-dry-run
chart-dry-run:
helm install \
-n $(K8S_NAMESPACE) \
-f $(VALUES_PATH) \
--generate-name \
--dry-run \
--debug \
charts/opencomponents-registry