3 min read
We can use the Kube Prometheus Stack Helm chart to deploy a full monitoring stack in Kubernetes. It's going to install Prometheus, AlertManager and Grafana with minumum configuration.
09/09/2024
Read more...2 min read
We can tell Kustomize to render a helm chart using the --enable-helm flag. In order to render it in the same way using ArgoCD, we'll have to create a plugin that will have this flag.
17/01/2023
Read more...2 min read
The topic is hot: Kustomize or Helm? While this discussion around this topic could continue indefinitely, the good news is that both tools can be utilized in conjunction, enhancing each other's capabilities.
12/01/2023
Read more...1 min read
Sometimes it comes handy to be able to set values using options instead of having to create a values files. Setting a value is quite trivial:
helm install argocd argo/argo-cd -n argocd --set 'server.ingress.enabled=true'
But how do we setup an array variable?
02/01/2023
Read more...2 min read
Having a helm chart released (via an index.yaml) is a convenient way of using it. Combining github actions with github pages we can do it in a serverless fashion
31/10/2022
Read more...