I look at this help requirement:
dependencies:
- name: postgresql
version: 8.6.2
repository: https://kubernetes-charts.storage.googleapis.com/
condition: postgresql.installdep.enable
Source: https://github.com/reportportal/kubernetes/blob/master/reportportal/v5/requirements.yaml
Postgres 8 is very very old. I guess this version is just the version of some package.
But how can I get more information about this package?
I look at https://kubernetes-charts.storage.googleapis.com/. But this URL seems made for robots, not for humans.
How can I (as a human) find more details about this dependency?
Requirements.yaml
is used to list Chart dependencies. Those dependencies can be built usinghelm dependency build
fromrequirement.lock
file.Version
describes chart version, not the image itself.All necessary information about the chart are described in
values.yaml
- you can find there information about images to be installed, it's version etc. In this case it's postgresql:11.7.0.You can retrieve information about the chart by using
helm show values <chart_name>
(chart doesn't have to be installed in the cluster) or it can be found on chart's github/ helm hub repository.