Skip to content

Commit 6ad6e19

Browse files
authored
Merge pull request redhat-cne#60 from jzding/images
update images
2 parents 2b9479e + e861eb8 commit 6ad6e19

File tree

8 files changed

+14
-13
lines changed

8 files changed

+14
-13
lines changed

Dockerfile.dev

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
# Used by quay.io ci builds or developer tests
2-
FROM quay.io/jacding/openshift-origin-release:golang-1.16 AS go-builder
1+
# Used by quay.io to trigger developer builds
2+
FROM quay.io/redhat-cne/openshift-origin-release:golang-1.17 AS go-builder
3+
34
ENV GO111MODULE=off
45
ENV CGO_ENABLED=1
56
ENV COMMON_GO_ARGS=-race

Dockerfile.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build hw-event-proxy binaries
2-
FROM quay.io/jacding/openshift-origin-release:golang-1.16 AS go-builder
2+
FROM quay.io/redhat-cne/openshift-origin-release:golang-1.17 AS go-builder
33

44
WORKDIR /go/src/github.com/redhat-cne/hw-event-proxy
55
COPY ./hw-event-proxy ./hw-event-proxy

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
VERSION ?=latest
55

66
# Image name
7-
PROXY_IMG_NAME ?= quay.io/redhat-cne/hw-event-proxy
8-
SIDECAR_IMG_NAME ?= quay.io/redhat-cne/cloud-event-proxy
7+
PROXY_IMG_NAME ?= quay.io/openshift/origin-baremetal-hardware-event-proxy
8+
SIDECAR_IMG_NAME ?= quay.io/openshift/origin-cloud-event-proxy
99
CONSUMER_IMG_NAME ?= quay.io/redhat-cne/cloud-native-event-consumer
1010

1111
PROXY_IMG ?= ${PROXY_IMG_NAME}:${VERSION}

docs/development.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ podman push localhost/hw-event-proxy:${TAG} quay.io/jacding/hw-event-proxy:lates
7272
### Set Env Variables
7373
```shell
7474
export VERSION=latest
75-
export PROXY_IMG=quay.io/jacding/hw-event-proxy:${VERSION}
76-
export SIDECAR_IMG=quay.io/jacding/cloud-event-proxy:${VERSION}
77-
export CONSUMER_IMG=quay.io/jacding/cloud-native-event-consumer:${VERSION}
75+
export PROXY_IMG=quay.io/openshift/origin-baremetal-hardware-event-proxy:${VERSION}
76+
export SIDECAR_IMG=quay.io/openshift/origin-cloud-event-proxy:${VERSION}
77+
export CONSUMER_IMG=quay.io/redhat-cne/cloud-native-event-consumer:${VERSION}
7878
# replace the following with real Redfish credentials and BMC ip address
7979
export REDFISH_USERNAME=admin; export REDFISH_PASSWORD=admin; export REDFISH_HOSTADDR=127.0.0.1
8080
```

e2e-tests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/jacding/openshift-origin-release:golang-1.16
1+
FROM quay.io/redhat-cne/openshift-origin-release:golang-1.17
22

33
WORKDIR /
44
COPY . .

e2e-tests/manifests/redfish-event-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: redfish-event-test
16-
image: quay.io/jacding/hw-event-proxy-e2e-test:latest
16+
image: quay.io/redhat-cne/hw-event-proxy-e2e-test:latest
1717
env:
1818
- name: MSG_PER_SEC
1919
value: "1"

manifests/base/consumer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ spec:
4242
- name: LOG_LEVEL
4343
value: "debug"
4444
- name: cloud-native-event-sidecar
45-
image: quay.io/redhat-cne/cloud-event-proxy
45+
image: quay.io/openshift/origin-cloud-event-proxy
4646
args:
4747
- "--metrics-addr=127.0.0.1:9091"
4848
- "--store-path=/store"

manifests/base/hw-event-proxy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ spec:
2929
serviceAccountName: hw-event-proxy-sa
3030
containers:
3131
- name: hw-event-proxy
32-
image: quay.io/redhat-cne/hw-event-proxy
32+
image: quay.io/openshift/origin-baremetal-hardware-event-proxy
3333
args:
3434
- "--api-port=8089"
3535
ports:
@@ -69,7 +69,7 @@ spec:
6969
- name: LOG_LEVEL
7070
value: "trace"
7171
- name: cloud-native-event-sidecar
72-
image: quay.io/redhat-cne/cloud-event-proxy
72+
image: quay.io/openshift/origin-cloud-event-proxy
7373
args:
7474
- "--metrics-addr=127.0.0.1:9091"
7575
- "--store-path=/store"

0 commit comments

Comments
 (0)