Skip to content

Commit 3bee079

Browse files
committed
u
1 parent cd5d89d commit 3bee079

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,13 @@ release: ory-repo .bin/yq
105105

106106
.PHONY: k3d-up
107107
k3d-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
115117
k3d-run: k3d-up postgresql prometheus
@@ -120,16 +122,20 @@ k3d-down:
120122

121123
.PHONY: postgresql
122124
postgresql:
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
128132
prometheus:
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
135141
ory-repo:

hacks/helm-upgrade.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ do
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

0 commit comments

Comments
 (0)