File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed
Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ # Makefile for eoapi-k8s
2+
3+ # Variables
4+ HELM_REPO_URL =https://devseed.com/eoapi-k8s/
5+ HELM_CHART_NAME =eoapi/eoapi
6+ PGO_CHART_VERSION =5.5.2
7+
8+ .PHONY : all install
9+
10+ # Default target
11+ all : install
12+
13+ install :
14+ @echo " Installing dependencies."
15+ helm install --set disable_check_for_upgrades=true pgo oci://registry.developers.crunchydata.com/crunchydata/pgo --version $(PGO_CHART_VERSION )
16+ @echo " Adding eoAPI helm repository."
17+ helm repo add eoapi $(HELM_REPO_URL )
18+ @echo " Installing eoAPI helm chart."
19+ cd ./helm-chart && \
20+ helm install --namespace eoapi --create-namespace --set gitSha=$$(git rev-parse HEAD | cut -c1-10 ) eoapi ./eoapi
21+
22+ help :
23+ @echo " Makefile commands:"
24+ @echo " make install - Install eoAPI on a cluster"
You can’t perform that action at this time.
0 commit comments