I want to test my helm charts using bazel, I added build.bazel file like below:
load("//:bazel/helm.bzl", "helm_test")
filegroup(
name = "panel-backend",
srcs = glob(
include = ["**"],
),
visibility = ["//visibility:public"],
)
helm_test(
name = "helm_test",
chart = "//production/apps/panel_backend/chart:panel-backend",
)
my structure is like below:
production/apps/panel_backend/chart/
├── BUILD.bazel
├── Chart.lock
├── Chart.yaml
├── templates
├── values.production.yaml
├── values.sandbox.yaml
└── values.yaml
and i get this error:
Error: directory production/charts/lib/update-strategy not found