forked from hyperledger/firefly-helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
42 lines (31 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
all: lint e2e
kind:
kind create cluster || true
clean:
kind delete cluster
lint:
ct lint \
--target-branch=main \
--exclude-deprecated \
--check-version-increment=false \
--lint-conf=./charts/lintconf.yaml
./hack/enforce-chart-conventions.sh
deps:
kubectl create ns cert-manager || true
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.4.0/cert-manager.crds.yaml
helm repo add jetstack https://charts.jetstack.io || true
helm upgrade --install --skip-crds -n cert-manager cert-manager jetstack/cert-manager --wait
kubectl apply -n cert-manager -f manifests/tls-issuers.yaml
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts || true
helm upgrade --install --set kubeStateMetrics.enabled=false --set nodeExporter.enabled=false --set grafana.enabled=false kube-prometheus prometheus-community/kube-prometheus-stack
helm repo add bitnami https://charts.bitnami.com/bitnami || true
helm upgrade --install --set postgresqlPassword=firef1y --set extraEnv[0].name=POSTGRES_DATABASE --set extraEnv[0].value=firefly postgresql bitnami/postgresql
kubectl create secret generic custom-psql-config --dry-run --from-literal="url=postgres://postgres:firef1y@postgresql.default.svc:5432/postgres?sslmode=disable" -o json | kubectl apply -f -
starter: charts/firefly/local-values.yaml
charts/firefly/local-values.yaml:
cp ./charts/firefly/ci/eth-values.yaml charts/firefly/local-values.yaml
deploy:
helm upgrade -i firefly ./charts/firefly -f ./charts/firefly/local-values.yaml
test:
ct install --namespace default --helm-extra-args="--timeout 120s" --charts charts/firefly
e2e: kind deps test