-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
156 lines (135 loc) · 5.5 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# get target architecture
LOCAL_ARCH := $(shell uname -m)
ifeq ($(LOCAL_ARCH),x86_64)
TARGET_ARCH_LOCAL=amd64
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 5),armv8)
TARGET_ARCH_LOCAL=arm64
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv)
TARGET_ARCH_LOCAL=arm
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 5),arm64)
TARGET_ARCH_LOCAL=arm64
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 7),aarch64)
TARGET_ARCH_LOCAL=arm64
else
TARGET_ARCH_LOCAL=amd64
endif
export GOARCH ?= $(TARGET_ARCH_LOCAL)
# get docker tag
ifeq ($(GOARCH),amd64)
LATEST_TAG?=latest
else
LATEST_TAG?=latest-$(GOARCH)
endif
# get target os
LOCAL_OS := $(shell uname -s)
ifeq ($(LOCAL_OS),Linux)
TARGET_OS_LOCAL = linux
else ifeq ($(LOCAL_OS),Darwin)
TARGET_OS_LOCAL = darwin
PATH := $(PATH):$(HOME)/go/bin/darwin_$(GOARCH)
else
echo "Not Supported"
TARGET_OS_LOCAL = windows
endif
export GOOS ?= $(TARGET_OS_LOCAL)
# Default docker container and e2e test target.
TARGET_OS ?= linux
TARGET_ARCH ?= amd64
OUT_DIR := ./dist
.DEFAULT_GOAL := all
ifneq ($(wildcard ./private/charts/nats-iam-broker),)
VALUES_PATH := ./private/charts/nats-iam-broker/values.yaml
else
VALUES_PATH := ./charts/nats-iam-broker/values.yaml
endif
DOCKER_REGISTRY ?= ghcr.io/jr200
IMAGE_NAME ?= nats-iam-broker
K8S_NAMESPACE ?= nats-iam-broker
################################################################################
# Target: all #
################################################################################
.PHONY: all
all: fmt build
################################################################################
# Target: fmt #
################################################################################
.PHONY: fmt
fmt:
go fmt $$(go list ./...)
################################################################################
# Target: build #
################################################################################
.PHONY: build
build:
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) \
go build -o build/nats-iam-broker-$(GOOS)-$(GOARCH) -gcflags "all=-N -l" -ldflags '-extldflags "-static"' \
cmd/nats-iam-broker/main.go
CGO_ENABLED=0 GOOS=$(GOOS) GOARCH=$(GOARCH) \
go build -o build/test-client-$(GOOS)-$(GOARCH) -gcflags "all=-N -l" -ldflags '-extldflags "-static"' \
cmd/test-client/main.go
################################################################################
# Target: docker-build #
################################################################################
.PHONY: docker-build
docker-build:
podman build \
--layers \
-f docker/Dockerfile.example \
--build-arg BUILD_OS=linux --build-arg BUILD_ARCH=amd64 \
-t nats-iam-broker:debug \
.
################################################################################
# Target: helm chart dependencies
################################################################################
.PHONY: chart-deps
chart-deps:
helm dependency build charts/nats-iam-broker --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) nats-iam-broker charts/nats-iam-broker \
--install \
--set vault-actions.bootstrapToken=$(VAULT_TOKEN) \
-f $(VALUES_PATH)
################################################################################
# Target: helm template
################################################################################
.PHONY: chart-template
chart-template: chart-deps
helm template -n $(K8S_NAMESPACE) nats-iam-broker charts/nats-iam-broker \
--set vault-actions.bootstrapToken=$(VAULT_TOKEN) \
-f $(VALUES_PATH)
################################################################################
# Target: helm template
################################################################################
.PHONY: chart-dry-run
chart-dry-run:
helm install \
-n $(K8S_NAMESPACE)
-f $(VALUES_PATH) \
--generate-name \
--dry-run \
--debug \
--set vault-actions.bootstrapToken=$(VAULT_TOKEN) \
charts/nats-iam-broker
################################################################################
# Target: example-shell #
################################################################################
.PHONY: example-shell
example-shell: docker-build
docker run --rm -it --entrypoint bash nats-iam-broker:debug
################################################################################
# Target: example-basic #
################################################################################
.PHONY: example-basic
example-basic: docker-build
docker run --rm --entrypoint examples/basic/run.sh nats-iam-broker:debug -log-human -log=info
################################################################################
# Target: example-rgb_org #
################################################################################
.PHONY: example-rgb_org
example-rgb_org: docker-build
docker run --rm --entrypoint examples/rgb_org/run.sh nats-iam-broker:debug -log-human -log=info