-
Notifications
You must be signed in to change notification settings - Fork 7
/
Makefile
64 lines (49 loc) · 1.64 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
.PHONY: test
test: test-frontend
.PHONY: test-frontend
test-frontend: lint-frontend
cd web && npm run test:unit
.PHONY: install-frontend
install-frontend:
cd web && npm install
.PHONY: install-frontend-ci
install-frontend-ci:
cd web && npm ci --ignore-scripts
.PHONY: install-frontend-ci-clean
install-frontend-ci-clean: install-frontend-ci
cd web && npm cache clean --force
.PHONY: build-frontend
build-frontend:
cd web && npm run i18n && npm run build
.PHONY: start-frontend
start-frontend:
cd web && npm run start
.PHONY: start-console
start-console:
./scripts/start-console.sh
.PHONY: lint-frontend
lint-frontend:
cd web && npm run lint
.PHONY: install-backend
install-backend:
go mod download
.PHONY: build-backend
build-backend:
go build $(BUILD_OPTS) -o plugin-backend -mod=readonly cmd/plugin-backend.go
.PHONY: start-backend
start-backend:
go run ./cmd/plugin-backend.go -port='9002' -config-path='./web/dist' -static-path='./web/dist' -plugin-config-path='ct.yaml'
.PHONY: build-image
build-image: test-frontend
./scripts/build-image.sh
.PHONY: start-forward
start-forward:
./scripts/start-forward.sh
export REGISTRY_ORG?=openshift-observability-ui
export TAG?=latest
IMAGE=quay.io/${REGISTRY_ORG}/troubleshooting-panel-console-plugin:${TAG}
.PHONY: deploy
deploy: test-frontend ## Build and push image, reinstall on cluster using helm.
helm uninstall troubleshooting-panel-console-plugin -n troubleshooting-panel-console-plugin || true
PUSH=1 scripts/build-image.sh
helm install troubleshooting-panel-console-plugin charts/openshift-console-plugin -n troubleshooting-panel-console-plugin --create-namespace --set plugin.image=$(IMAGE)