Skip to content

Commit 211aa44

Browse files
committed
chore: remove chart tgz
Signed-off-by: Bence Csati <bence.csati@axoflow.com>
1 parent 8158fa9 commit 211aa44

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/artifacts.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ testbin
9393
example/tls-cluster-forward/*.pem
9494
example/tls-cluster-forward/*.csr
9595
example/tls-cluster-forward/*.key
96-
96+
charts/logging-operator/charts/*.tgz
9797
.licensei.cache
9898

9999
.DS_Store
-153 KB
Binary file not shown.

hack/test.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,15 @@ function load_images()
2828

2929
function 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

4042
function get_test_pod_name()

0 commit comments

Comments
 (0)