File tree Expand file tree Collapse file tree 4 files changed +7
-2
lines changed
charts/logging-operator/charts Expand file tree Collapse file tree 4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -270,6 +270,9 @@ jobs:
270270 id : oci-chart-name
271271 run : echo "value=${{ steps.oci-registry-name.outputs.value }}/${{ steps.chart-name.outputs.value }}" >> "$GITHUB_OUTPUT"
272272
273+ - name : Helm dependency update
274+ run : helm dependency update charts/${{ steps.chart-name.outputs.value }}
275+
273276 - name : Helm lint
274277 run : helm lint charts/${{ steps.chart-name.outputs.value }}
275278
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ testbin
9393example /tls-cluster-forward /* .pem
9494example /tls-cluster-forward /* .csr
9595example /tls-cluster-forward /* .key
96-
96+ charts / logging-operator / charts / * .tgz
9797.licensei.cache
9898
9999.DS_Store
Original file line number Diff line number Diff line change @@ -28,13 +28,15 @@ function load_images()
2828
2929function helm_deploy_logging_operator()
3030{
31+ local chart_dir=" charts/logging-operator"
32+ helm dependency update " ${chart_dir} "
3133 helm upgrade --install \
3234 --debug \
3335 --wait \
3436 --create-namespace \
3537 -f hack/values.yaml \
3638 logging-operator \
37- " charts/logging-operator "
39+ " ${chart_dir} "
3840}
3941
4042function get_test_pod_name()
You can’t perform that action at this time.
0 commit comments