Skip to content

Commit

Permalink
chore: remove chart tgz
Browse files Browse the repository at this point in the history
Signed-off-by: Bence Csati <[email protected]>
  • Loading branch information
csatib02 committed Dec 13, 2024
1 parent d08e259 commit bfaf174
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@ jobs:
id: oci-chart-name
run: echo "value=${{ steps.oci-registry-name.outputs.value }}/${{ steps.chart-name.outputs.value }}" >> "$GITHUB_OUTPUT"

- name: Helm dependency update
run: helm dependency update charts/${{ steps.chart-name.outputs.value }}

- name: Helm lint
run: helm lint charts/${{ steps.chart-name.outputs.value }}

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ testbin
example/tls-cluster-forward/*.pem
example/tls-cluster-forward/*.csr
example/tls-cluster-forward/*.key

charts/logging-operator/charts/*.tgz
.licensei.cache

.DS_Store
Expand Down
Binary file not shown.
4 changes: 3 additions & 1 deletion hack/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,15 @@ function load_images()

function helm_deploy_logging_operator()
{
local chart_dir="charts/logging-operator"
helm dependency update "${chart_dir}"
helm upgrade --install \
--debug \
--wait \
--create-namespace \
-f hack/values.yaml \
logging-operator \
"charts/logging-operator"
"${chart_dir}"
}

function get_test_pod_name()
Expand Down

0 comments on commit bfaf174

Please sign in to comment.