We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c1caec commit 9eea88fCopy full SHA for 9eea88f
Makefile
@@ -0,0 +1,15 @@
1
+namespace ?= default
2
+releaseName ?= devopsgpt
3
+
4
+all: build up
5
6
+build:
7
+ docker-compose build
8
+up:
9
+ docker-compose up -d
10
+down:
11
+ docker-compose down -v
12
+helm-install:
13
+ helm install $(releaseName) helm/ -f helm/values.yaml -n $(namespace) --create-namespace
14
+helm-uninstall:
15
+ helm uninstall $(releaseName) -n $(namespace)
run.sh
0 commit comments