You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installing the latest version of the Helm chart without overriding the image tag results in the following error:
Failed to pull image "quay.io/sighup/permission-manager:1.9.0": rpc error: code = NotFound desc = failed to pull and unpack image "quay.io/sighup/permission-manager:1.9.0": failed to resolve reference "quay.io/sighup/permission-manager:1.9.0": quay.io/sighup/permission-manager:1.9.0: not found
The reason for this is that the Helm chart's appVersion format doesn't match the Docke image tag, which is prefixed with v.
The workaround for this is to override the image.tag in values yaml like so, but the appVersion in the chart should be changed to the correct format.
image:
tag: v1.9.0
The text was updated successfully, but these errors were encountered:
Installing the latest version of the Helm chart without overriding the image tag results in the following error:
The reason for this is that the Helm chart's
appVersion
format doesn't match the Docke image tag, which is prefixed withv
.The workaround for this is to override the
image.tag
in values yaml like so, but theappVersion
in the chart should be changed to the correct format.The text was updated successfully, but these errors were encountered: