Skip to content

Commit

Permalink
Fix registry url (registry.ci...)
Browse files Browse the repository at this point in the history
  • Loading branch information
lberk committed Mar 11, 2021
1 parent dde2bea commit 3f75ad8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -500,17 +500,17 @@ spec:
- name: "IMAGE_KN_CLI_ARTIFACTS"
value: "registry.ci.openshift.org/openshift/knative-v0.20.0:kn-cli-artifacts"
- name: "KAFKA_IMAGE_kafka-controller-manager__manager"
value: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-source-controller"
value: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-source-controller"
- name: "KAFKA_IMAGE_KAFKA_RA_IMAGE"
value: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-receive-adapter"
value: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-receive-adapter"
- name: "KAFKA_IMAGE_kafka-ch-controller__controller"
value: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-controller"
value: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-controller"
- name: "KAFKA_IMAGE_DISPATCHER_IMAGE"
value: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
value: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
- name: "KAFKA_IMAGE_kafka-ch-dispatcher__dispatcher"
value: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
value: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
- name: "KAFKA_IMAGE_kafka-webhook__kafka-webhook"
value: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-webhook"
value: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-webhook"
- name: knative-openshift-ingress
spec:
replicas: 1
Expand Down Expand Up @@ -791,16 +791,16 @@ spec:
- name: "IMAGE_KN_CLI_ARTIFACTS"
image: "registry.ci.openshift.org/openshift/knative-v0.20.0:kn-cli-artifacts"
- name: "KAFKA_IMAGE_kafka-controller-manager__manager"
image: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-source-controller"
image: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-source-controller"
- name: "KAFKA_IMAGE_KAFKA_RA_IMAGE"
image: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-receive-adapter"
image: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-receive-adapter"
- name: "KAFKA_IMAGE_kafka-ch-controller__controller"
image: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-controller"
image: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-controller"
- name: "KAFKA_IMAGE_DISPATCHER_IMAGE"
image: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
image: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
- name: "KAFKA_IMAGE_kafka-ch-dispatcher__dispatcher"
image: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
image: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-consolidated-dispatcher"
- name: "KAFKA_IMAGE_kafka-webhook__kafka-webhook"
image: "registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-webhook"
image: "registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-webhook"
replaces: serverless-operator.v1.13.0
version: 1.14.0
6 changes: 3 additions & 3 deletions openshift/ci-operator/source-image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM src

COPY oc /usr/bin/oc
COPY --from=registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-serving-src /go/src/knative.dev/serving/ /go/src/knative.dev/serving/
COPY --from=registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-src /go/src/knative.dev/eventing/ /go/src/knative.dev/eventing/
COPY --from=registry.svc.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-src /go/src/knative.dev/eventing-kafka/ /go/src/knative.dev/eventing-kafka/
COPY --from=registry.ci.openshift.org/openshift/knative-v0.20.0:knative-serving-src /go/src/knative.dev/serving/ /go/src/knative.dev/serving/
COPY --from=registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-src /go/src/knative.dev/eventing/ /go/src/knative.dev/eventing/
COPY --from=registry.ci.openshift.org/openshift/knative-v0.20.0:knative-eventing-kafka-src /go/src/knative.dev/eventing-kafka/ /go/src/knative.dev/eventing-kafka/

RUN chmod g+w /go/src/knative.dev/serving/ && chmod g+w /go/src/knative.dev/eventing/ && chmod g+w /go/src/knative.dev/eventing-kafka/

0 comments on commit 3f75ad8

Please sign in to comment.