File tree 4 files changed +7
-2
lines changed
charts/telemetry-controller/charts
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,9 @@ jobs:
188
188
id : oci-chart-name
189
189
run : echo "value=${{ steps.oci-registry-name.outputs.value }}/${{ steps.chart-name.outputs.value }}" >> "$GITHUB_OUTPUT"
190
190
191
+ - name : Helm dependency update
192
+ run : helm dependency update charts/${{ steps.chart-name.outputs.value }}
193
+
191
194
- name : Helm lint
192
195
run : helm lint charts/${{ steps.chart-name.outputs.value }}
193
196
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ coverage.html
26
26
* ~
27
27
28
28
crddir
29
-
29
+ charts / telemetry-controller / charts / * .tgz
30
30
.licensei.cache
31
31
32
32
.DS_Store
Original file line number Diff line number Diff line change @@ -33,13 +33,15 @@ function load_images()
33
33
34
34
function helm_install_telemetry_controller()
35
35
{
36
+ local chart_dir=" charts/telemetry-controller"
37
+ helm dependency update " ${chart_dir} "
36
38
helm upgrade --install \
37
39
--debug \
38
40
--wait \
39
41
--create-namespace \
40
42
-f " e2e/values.yaml" \
41
43
telemetry-controller \
42
- " charts/telemetry-controller/ "
44
+ " ${chart_dir} "
43
45
}
44
46
45
47
function test_one_tenant_two_subscriptions()
You can’t perform that action at this time.
0 commit comments