Reference output will document the rendered resources and the persistence configuration used by the example cluster.
Example · Data service
Deploy Redis without a dedicated chart.
Start with a minimal Redis workload, then add persistence, resources, and security settings as the environment requires.
01 · Values
Set the Redis image and service port.
02 · Deploy
Install it into an isolated namespace.
03 · Result
Check the Service and workload health.
values.yaml
image: redis imageTag: "7.4" service: port: 6379
Deploy
helm upgrade --install redis universal/application \ --namespace data --create-namespace \ -f values.yaml