Skip to content

Commit 6261dd0

Browse files
committed
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>
1 parent 88dfd8b commit 6261dd0

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

deploy-templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ This project is licensed under the [Apache License 2.0](LICENSE.txt).
147147
| annotations | object | `{}` | Annotations to add to the deployment |
148148
| extraVolumeMounts | list | `[]` | Additional volume mounts to add to the manager container |
149149
| extraVolumes | list | `[]` | Additional volumes to add to the manager pod |
150-
| image.registry | string | `"docker.io"` | tekton-pipeline-queue image registry |
150+
| image.registry | string | `""` | tekton-pipeline-queue image registry. Leave empty to use the repository as-is (Docker Hub by default) |
151151
| 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) |
152152
| 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 |
153153
| imagePullPolicy | string | `"IfNotPresent"` | Image pull policy |

deploy-templates/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ tolerations: []
1414
affinity: {}
1515

1616
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: ""
1919
# -- tekton-pipeline-queue Docker image name. The released image can be found on [Dockerhub](https://hub.docker.com/r/epamedp/tekton-pipeline-queue)
2020
repository: epamedp/tekton-pipeline-queue
2121
# -- 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

Comments
 (0)