Creating a default helm chart with custom values

32 views Asked by At

I created a helm chart using command "helm create sampleapp".

The default chart created by this command has nginx as image.repository, ClusterIP as service.type, autoscaling.maxReplicas as 100 and so on.

Is there a way I can 'create' a default helm chart with my own values by passing them via command line or config? Like image as redis, service.type as NodePort, maxReplicas as 3.

I couldn't find a command line argument to specify the values. The only way seems to be create the default chart and update the values.yaml with what I want. Maybe this is too trivial, but is there a way to do this?

0

There are 0 answers