File tree Expand file tree Collapse file tree 6 files changed +48
-2
lines changed
testdata/helmchart-valuesfile Expand file tree Collapse file tree 6 files changed +48
-2
lines changed Original file line number Diff line number Diff line change 5757 kubectl -n source-system wait gitrepository/gitrepository-sample --for=condition=ready --timeout=1m
5858 kubectl -n source-system wait helmrepository/helmrepository-sample --for=condition=ready --timeout=1m
5959 kubectl -n source-system wait helmchart/helmchart-sample --for=condition=ready --timeout=1m
60- kubectl -n source-system logs deploy/source-controller
60+ kubectl -n source-system delete -f ./config/samples
61+ - name : Run HelmChart values file tests
62+ run : |
63+ kubectl -n source-system apply -f ./config/testdata/helmchart-valuesfile
64+ kubectl -n source-system wait helmchart/mariadb --for=condition=ready --timeout=5m
65+ kubectl -n source-system wait helmchart/mariadb-git --for=condition=ready --timeout=5m
66+ kubectl -n source-system delete -f ./config/testdata/helmchart-valuesfile
6167 - name : Debug failure
6268 if : failure()
6369 run : |
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ metadata:
44 name : helmchart-git-sample
55spec :
66 chart : charts/podinfo
7- version : ' ^2.0.0'
87 sourceRef :
98 kind : GitRepository
109 name : gitrepository-sample
Original file line number Diff line number Diff line change 1+ apiVersion : source.toolkit.fluxcd.io/v1alpha1
2+ kind : GitRepository
3+ metadata :
4+ name : bitnami-charts
5+ spec :
6+ interval : 1m
7+ url : https://github.com/bitnami/charts
8+ ref :
9+ branch : master
10+ ignore :
11+ /*
12+ !/bitnami/
Original file line number Diff line number Diff line change 1+ apiVersion : source.toolkit.fluxcd.io/v1alpha1
2+ kind : HelmChart
3+ metadata :
4+ name : mariadb-git
5+ spec :
6+ chart : bitnami/mariadb
7+ valuesFile : values-production.yaml
8+ sourceRef :
9+ kind : GitRepository
10+ name : bitnami-charts
11+ interval : 1m
Original file line number Diff line number Diff line change 1+ apiVersion : source.toolkit.fluxcd.io/v1alpha1
2+ kind : HelmChart
3+ metadata :
4+ name : mariadb
5+ spec :
6+ chart : mariadb
7+ valuesFile : values-production.yaml
8+ sourceRef :
9+ kind : HelmRepository
10+ name : bitnami-charts
11+ interval : 1m
Original file line number Diff line number Diff line change 1+ apiVersion : source.toolkit.fluxcd.io/v1alpha1
2+ kind : HelmRepository
3+ metadata :
4+ name : bitnami-charts
5+ spec :
6+ interval : 1m
7+ url : https://charts.bitnami.com/bitnami
You can’t perform that action at this time.
0 commit comments