Questions tagged [kustomize]

3 questions
2
votes
2 answers

How to set kubernetes secrets outside a container section

I have a generated kubernetes secret like this as it is shown e.g. in argocd: apiVersion: v1 data: ES_GUEST_PASSWORD: ++++++++ ES_GUEST_USERNAME: ++++++++ kind: Secret I now want to use it as an input to a username and password setting for…
Fabian
  • 123
  • 2
1
vote
1 answer

How can I create configMap from a file in a different Git repository using Kustomize

I know that I can use Kustomize's configMapGenerator to create a configmap from a file that resides in the same Git repository as the "kustomization.yaml" file. For Example: apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: …
0
votes
1 answer

How to edit patch items in a Kustomization file for doing gitops with Helm (and avoiding patches piling up)

I'm looking for a better way to update docker images defined ina HelmRelease using GitOps, as my current method is generating noise. After introducing Helm to a cluster I'm managing with GitOps, I'm finding some difficulties on how to properly…
RogerFC
  • 354