Questions about using kustomize to create and modify Kubernetes manifests in an immutable way.
I am trying to build manifest file for specific environment example:- test and I want to re-use base manifest …
kubernetes yaml kustomizeGiven the following kustomize patch: apiVersion: apps/v1 kind: Deployment metadata: name: flux spec: template: spec: containers: - name: some-name …
kubernetes kustomizeAccording to the official documentation I should be able to easily override the tags and name of my docker images …
docker kubernetes tags kubectl kustomizeI've a simple project that use kustomize like this: base/ namespace.yaml kustomization.yaml service.yaml With kustomization.yaml is: …
kustomize