• Helm dependencies

    2 min read

    helm dependencies

    We can define dependencies you our helm charts using the dependencies key on the Chart.yaml file:

    (...)
    dependencies:
    - name: gatekeeper
      version: "3.9.0"
      repository: "https://open-policy-agent.github.io/gatekeeper/charts"
    

    03/10/2022

    Read more...
  • Install a development Vault on Kubernetes

    2 min read

    Helm Vault chart development testing

    If you are using Vault for storing secrets, it is desirable to have a different Vault for testing, CI and development. Having to setup an alternate production-grade Vault can be just not worth it (specially for volatile environments)

    For local environments it comes handy to use the dev server mode, for Kubernetes we can use the pet2cattle/helm-testvault to deploy it as an in-cluster service

    22/09/2022

    Read more...
  • Import files into objects using helm

    2 min read

    helm ConfigMap Secret file

    When writing helm charts being able to specify the files to use for ConfigMap or a Secret objects is way more convenient than having the object already rendered. Using .Files.Glob we can tell help to import a set of files into the object

    08/07/2022

    Read more...
  • ArgoCD: Create an application declaratively

    3 min read

    argocd kubernetes Application

    On ArgoCD an Application is a group of resources defined from a given source, for example, a helm chart. To create it we can use the argocd cli tool or create it declaratively as any other Kubernetes object using a manifest

    06/06/2022

    Read more...
  • How helm values are stored on Kubernetes

    2 min read

    helm get values secret configmap

    If we want to get the values we have set for a particular helm chart we can use the helm get values command. Where are these values stored?

    27/01/2022

    Read more...

More recent...

Older content...