Questions tagged [kustomize]

Questions about using kustomize to create and modify Kubernetes manifests in an immutable way.

Kustomize traverses a Kubernetes manifest to add, remove or update configuration options without forking. It is available both as a standalone binary and as a native feature of kubectl. Kustomize supports taking a base set of Kubernetes manifest and applying overlays that apply patches to generate an environment-specific version of the base manifest. It also included generators for configuration maps and secrets.

362 questions
-1
votes
1 answer

what is use of Koustomize.yaml?

Is it the same / similar to requirement.txt in Python or package.json in the Node.js world? Just trying to draw a parallel. (early help is appreciated - preparing for an interview)
forvaidya
  • 3,041
  • 3
  • 26
  • 33
-2
votes
1 answer

Four different errors when using kubectl apply command

My docker-compose file is as below: version: '3' services: nginx: build: . container_name: nginx ports: - '80:80' And my Dockerfile: FROM nginx:alpine I used kompose konvert and it created two files called…
Saeed
  • 3,255
  • 4
  • 17
  • 36
1 2 3
…
24
25