Installing a WordPress chart
Installing a Helm chart is a simple process that should begin with inspecting a chart’s values. In the next section, we will inspect the values that are available in the WordPress chart and describe how to create a file that allows for customizing the installation. Finally, we will install the chart and access the WordPress application.
Creating a values file for configuration
You can override the values defined in charts by providing a YAML-formatted values
file. To create a values
file, you need to inspect the supported values that the chart provides. This can be done by running the helm show values
command, as explained earlier.
Run the following command to inspect the WordPress chart’s values:
$ helm show values bitnami/wordpress --version 12.1.6
The result of this command should be a long list of possible values that you can set, many of which already have default values set:
Figure 3.9 – A...