Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

helm lint: INFO Chart.yaml: icon is recommended

Running helm lint I get:

I get: [INFO] Chart.yaml: icon is recommended

Where do I set the icon?

like image 701
Chris G. Avatar asked Jul 27 '18 12:07

Chris G.


People also ask

What does Helm lint do?

Synopsis. This command takes a path to a chart and runs a series of tests to verify that the chart is well-formed. If the linter encounters things that will cause the chart to fail installation, it will emit [ERROR] messages.

How do I get yaml from Helm chart?

In helm, there is a command called helm template . Using the template command you can convert any helm chart to a YAML manifest. The resultant manifest file will have all the default values set in the helm values. yaml.

Do Helm chart has yaml files in its package?

Helm Charts are simply Kubernetes YAML manifests combined into a single package that can be advertised to your Kubernetes clusters. Once packaged, installing a Helm Chart into your cluster is as easy as running a single helm install, which really simplifies the deployment of containerized applications.


1 Answers

From helm docs:

icon: A URL to an SVG or PNG image to be used as an icon (optional).

I.e.:

apiVersion: v1
description: A Helm chart
name: myChart
version: 0.1.0
icon: https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png
like image 196
k-sever Avatar answered Oct 25 '22 18:10

k-sever