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
EPMDEDP-17203: fix: default image.registry to empty so CD deploys resolve the full repository path
The docker.io default was prepended to the ECR path injected by the CD pipeline, producing an
unresolvable image reference. An empty registry matches the convention of other KRCI charts and
still pulls from Docker Hub for standalone installs.
Signed-off-by: Sergiy Kulanov <sergiy_kulanov@epam.com>
| image.registry | string |`""`| tekton-pipeline-queue image registry. Leave empty to use the repository as-is (Docker Hub by default)|
151
151
| image.repository | string |`"epamedp/tekton-pipeline-queue"`| tekton-pipeline-queue Docker image name. The released image can be found on [Dockerhub](https://hub.docker.com/r/epamedp/tekton-pipeline-queue) |
152
152
| image.tag | string |`nil`| tekton-pipeline-queue Docker image tag. The released image can be found on [Dockerhub](https://hub.docker.com/r/epamedp/tekton-pipeline-queue). If not defined then .Chart.AppVersion is used |
Copy file name to clipboardExpand all lines: deploy-templates/values.yaml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,8 @@ tolerations: []
14
14
affinity: {}
15
15
16
16
image:
17
-
# -- tekton-pipeline-queue image registry
18
-
registry: docker.io
17
+
# -- tekton-pipeline-queue image registry. Leave empty to use the repository as-is (Docker Hub by default)
18
+
registry: ""
19
19
# -- tekton-pipeline-queue Docker image name. The released image can be found on [Dockerhub](https://hub.docker.com/r/epamedp/tekton-pipeline-queue)
20
20
repository: epamedp/tekton-pipeline-queue
21
21
# -- tekton-pipeline-queue Docker image tag. The released image can be found on [Dockerhub](https://hub.docker.com/r/epamedp/tekton-pipeline-queue). If not defined then .Chart.AppVersion is used
0 commit comments