This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example showing how to patch kubernetes resources. | |
// This is the companion to my article 'Patching Kubernetes Resources in Golang': | |
// https://dwmkerr.com/patching-kubernetes-resources-in-golang/ | |
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
types "k8s.io/apimachinery/pkg/types" |
Helm 3 is storing description of it's releases in secrets. You can simply find them via
$ kubectl get secrets
NAME TYPE DATA AGE
sh.helm.release.v1.wordpress.v1 helm.sh/release.v1 1 1h
If you want to get more info about the secret, you can try to describe the secret
$ kubectl describe secret sh.helm.release.v1.wordpress.v1