Skip to content

Commit 4010751

Browse files
ci: fix workflows lint & test (#1344)
1 parent 8e768dd commit 4010751

File tree

167 files changed

+52
-80
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

167 files changed

+52
-80
lines changed

.github/workflows/lint-test.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
- name: Set up chart-testing
2525
uses: helm/[email protected]
2626

27+
- name: Add Helm Repositories
28+
run: |
29+
helm repo add sentry-kubernetes https://sentry-kubernetes.github.io/charts
30+
helm repo update
31+
2732
- name: Run chart-testing (list-changed)
2833
id: list-changed
2934
run: |

.github/workflows/lint.yaml

Lines changed: 0 additions & 35 deletions
This file was deleted.

.github/workflows/push.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
- name: Build clickhouse chart
2929
uses: WyriHaximus/github-action-helm3@v4
3030
with:
31-
exec: helm package -u main/clickhouse --destination gh-pages/charts
31+
exec: helm package -u main/charts/clickhouse --destination gh-pages/charts
3232

3333
- name: Build sentry chart
3434
uses: WyriHaximus/github-action-helm3@v4
3535
with:
36-
exec: helm package -u main/sentry --destination gh-pages/charts
36+
exec: helm package -u main/charts/sentry --destination gh-pages/charts
3737

3838
- name: Build sentry-kubernetes chart
3939
uses: WyriHaximus/github-action-helm3@v4
4040
with:
41-
exec: helm package -u main/sentry-kubernetes --destination gh-pages/charts
41+
exec: helm package -u main/charts/sentry-kubernetes --destination gh-pages/charts
4242

4343
- name: Build sentry-kubernetes chart
4444
uses: WyriHaximus/github-action-helm3@v4
File renamed without changes.
File renamed without changes.
Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
** Please be patient while the chart is being deployed **
2-
3-
1. Get the Clickhouse URL by running:
4-
5-
{{- if .Values.clickhouse.ingress.enabled }}
6-
7-
export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }} -o jsonpath='{.spec.rules[0].host}')
8-
echo "Clickhouse URL: http://$HOSTNAME/"
9-
10-
{{- else }}
11-
12-
echo URL : http://127.0.0.1:8080/
13-
echo Management URL : http://127.0.0.1:8080/manager
14-
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 8123:{{ .Values.clickhouse.http_port }}
15-
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9000:{{ .Values.clickhouse.tcp_port }}
16-
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9009:{{ .Values.clickhouse.interserver_http_port }}
17-
18-
{{- end }}
19-
20-
2. Get the Tabix URL by running:
21-
22-
{{- if .Values.tabix.ingress.enabled }}
23-
24-
export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }}-tabix -o jsonpath='{.spec.rules[0].host}')
25-
echo "Tabix URL: http://$HOSTNAME/"
26-
27-
{{- else }}
28-
29-
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }}-tabix 80
30-
31-
{{- end }}
1+
** Please be patient while the chart is being deployed **
2+
3+
1. Get the Clickhouse URL by running:
4+
5+
{{- if .Values.clickhouse.ingress.enabled }}
6+
7+
export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }} -o jsonpath='{.spec.rules[0].host}')
8+
echo "Clickhouse URL: http://$HOSTNAME/"
9+
10+
{{- else }}
11+
12+
echo URL : http://127.0.0.1:8080/
13+
echo Management URL : http://127.0.0.1:8080/manager
14+
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 8123:{{ .Values.clickhouse.http_port }}
15+
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9000:{{ .Values.clickhouse.tcp_port }}
16+
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }} 9009:{{ .Values.clickhouse.interserver_http_port }}
17+
18+
{{- end }}
19+
20+
2. Get the Tabix URL by running:
21+
22+
{{- if .Values.tabix.ingress.enabled }}
23+
24+
export HOSTNAME=$(kubectl get ingress --namespace {{ .Release.Namespace }} {{ template "clickhouse.fullname" . }}-tabix -o jsonpath='{.spec.rules[0].host}')
25+
echo "Tabix URL: http://$HOSTNAME/"
26+
27+
{{- else }}
28+
29+
kubectl port-forward --namespace {{ .Release.Namespace }} svc/{{ template "clickhouse.fullname" . }}-tabix 80
30+
31+
{{- end }}
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)