Junior — Middle
Can you list the main patterns and types of manifests used in Helm?
sobes.tech AI
Answer from AI
In Helm, the main templates and types of manifests include:
- Deployment: describes the creation and management of pods and replicas.
- Service: defines how to access pods (e.g., ClusterIP, NodePort).
- ConfigMap and Secret: for storing configuration data and secrets.
- Ingress: manages external access to services via HTTP/HTTPS.
- PersistentVolumeClaim: requests for persistent storage.
Templates are files with the .yaml extension containing Kubernetes manifests with Go templates for parameterization. They enable creating dynamic configurations by substituting values from values.yaml.