Hi team, I am trying to test a signonz implementat...
# support
b
Hi team, I am trying to test a signonz implementation for a project. I was wondering I could ask you a question. I am trying to use Kustomize. I ran “helm template” against the repo and it generates two directories - charts and templates. Templates has the configuration for the alertmanager, frontend, otel-collector, collector-metrics, query-service, and schema-migrator. If I am using Kustomize to deploy, should I apply manifests in both charts and templates or is applying all manifests in templates enough to install signoz in my test cluster? Thanks!
r
@Prashant Shahi should be able to help you with this question
p
Both
charts
and
templates
are needed. However, you should use
kustomize build --enable-helm
to render the helm chart using
kustomization.yaml
instead of
helm template
.