redhat-cop / cert-utils-operator

Set of functionalities around certificates packaged in a Kubernetes operator
Apache License 2.0
95 stars 35 forks source link

Documentation error #38

Closed InfoSec812 closed 4 years ago

InfoSec812 commented 4 years ago

This LINE shows the command:

export cert_utils_chart_version=$(helm search cert-utils-operator/cert-utils-operator | grep cert-utils-operator/cert-utils-operator | awk '{print $2}')

But the command is missing an argument and needs to be changed to:

export cert_utils_chart_version=$(helm search repo cert-utils-operator/cert-utils-operator | grep cert-utils-operator/cert-utils-operator | awk '{print $2}')

The helm search needs the repo argument with Helm v3.1.2