diff --git a/.tekton/application-service-pull-request.yaml b/.tekton/application-service-pull-request.yaml index 6d46df3cb..da0a52f52 100644 --- a/.tekton/application-service-pull-request.yaml +++ b/.tekton/application-service-pull-request.yaml @@ -267,6 +267,10 @@ spec: params: - name: BASE_IMAGES_DIGESTS value: $(tasks.build-container.results.BASE_IMAGES_DIGESTS) + - name: IMAGE_URL + value: $(tasks.build-container.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-container.results.IMAGE_DIGEST) runAfter: - build-container taskRef: diff --git a/.tekton/application-service-push.yaml b/.tekton/application-service-push.yaml index 563b438df..fbf252a28 100644 --- a/.tekton/application-service-push.yaml +++ b/.tekton/application-service-push.yaml @@ -264,6 +264,10 @@ spec: params: - name: BASE_IMAGES_DIGESTS value: $(tasks.build-container.results.BASE_IMAGES_DIGESTS) + - name: IMAGE_URL + value: $(tasks.build-container.results.IMAGE_URL) + - name: IMAGE_DIGEST + value: $(tasks.build-container.results.IMAGE_DIGEST) runAfter: - build-container taskRef: diff --git a/Dockerfile b/Dockerfile index c413f9823..ec824e857 100644 --- a/Dockerfile +++ b/Dockerfile @@ -55,6 +55,8 @@ WORKDIR / USER 1001 LABEL description="RHTAP Hybrid Application Service operator" +LABEL com.redhat.component="Hybrid Application Service" +LABEL name="Hybrid Application Service" LABEL io.k8s.description="RHTAP Hybrid Application Service operator" LABEL io.k8s.display-name="application-service" LABEL io.openshift.tags="rhtap"