File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -105,11 +105,13 @@ release: ory-repo .bin/yq
105105
106106.PHONY : k3d-up
107107k3d-up :
108+ echo " ::group::Starting k3d cluster"
108109 k3d cluster create --image $$ {K3SIMAGE} ory-k8s -p " 8080:80@server:0" \
109110 --k3s-arg=--kube-apiserver-arg=" enable-admission-plugins=NodeRestriction,ServiceAccount@server:0" \
110111 --k3s-arg=feature-gates=" NamespaceDefaultLabelName=true@server:0" ;
111112
112113 kubectl apply -R -f hacks/manifests
114+ echo "::endgroup::"
113115
114116.PHONY : k3d-run
115117k3d-run : k3d-up postgresql prometheus
@@ -120,16 +122,20 @@ k3d-down:
120122
121123.PHONY : postgresql
122124postgresql :
125+ echo " ::group::Install postgresSQL DB"
123126 helm repo add bitnami https://charts.bitnami.com/bitnami
124127 helm repo update
125128 helm install postgresql bitnami/postgresql --atomic --debug -f hacks/values/postgres/default.yaml
129+ echo " ::endgroup::"
126130
127131.PHONY : prometheus
128132prometheus :
133+ echo " ::group::Install Prometheus Stack"
129134 helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
130135 helm repo update
131136 kubectl create ns prometheus --dry-run=client -o yaml | kubectl apply -f -
132137 helm install prometheus prometheus-community/kube-prometheus-stack -f hacks/values/prometheus/default.yaml
138+ echo " ::endgroup::"
133139
134140.PHONY : ory-repo
135141ory-repo :
Original file line number Diff line number Diff line change 2121 export release=$( echo " ${CHART_NAME} -${val%% .* } -$( date +%s) " | cut -c 1-51)
2222 set +e
2323 helm install \
24- -f " https://raw.githubusercontent.com/ory/k8s/v${BASE_RELEASE} /hacks/values/${CHART_NAME} /${val} .yaml " \
24+ -f " https://raw.githubusercontent.com/ory/k8s/v${BASE_RELEASE} /hacks/values/${CHART_NAME} /${val} " \
2525 " ${release} " " ory/${CHART_NAME} " \
2626 --wait --debug --atomic --timeout=" ${TIMEOUT} "
2727
You can’t perform that action at this time.
0 commit comments