I am currently using Pulumi to spin up a GKE clust...
# golang
r
I am currently using Pulumi to spin up a GKE cluster and deploy ArgoCD onto the cluster using the Argo Helm chart. As part of the setup I need to add a private GitRepo. This information is stored in a configmap (argocd-cm) which gets created by the Helm-chart… In order to add the private repo I would have to get the existing configmap (corev1.GetConfigMap( ….) ) and add the values to the data of the configmap. 1. is this really a good idea? 2. can I just use the GetConfigMap func and change the values…