Helm 3 complete tutorial (four): writing the first chart

Searching for detailed Helm 3 documents on the Internet failed, the official website documents were too messy, and the technical group consulted on the document information and was ridiculed. MD doesn't fight for steamed buns. If there is no good document, I will summarize a document by myself. Part of the content in the document comes from major blogs and official websites, and part of the text content has been rearranged by me. All concept explanations will be accompanied by actual code records and experience. The article is updated from time to time, welcome to follow and subscribe to the column. If you have any questions, please leave a message in the comment area.
Link to the original text of this column: https://blog.csdn.net/xzk9381/category_10895812.html, please indicate the source for reprinting

In the previous content, we have learned what the directory structure of a chart looks like, and then start to create the first chart.

One, create a chart

Use helm createthe command can easily create a chart, we first create a named mychartchart, the command is as follows:

[@k8s-master1 /opt/helm/work]# helm create mychart
Creating mychart

After the command is executed, a directory named mychart will be created in the current directory. Let's check the structure of the directory:

Guess you like

Origin blog.csdn.net/xzk9381/article/details/115210258