Skip to content

Commit

Permalink
Updating o-e-(ansible|helm|sdk) builder & base images to be consisten…
Browse files Browse the repository at this point in the history
…t with ART

Combining PRs operator-framework#76, operator-framework#77, operator-framework#80, operator-framework#81, operator-framework#83 since they are based on really old
branches with failing tests.
  • Loading branch information
jmrodri committed Dec 16, 2020
1 parent 48b6548 commit 11b33ae
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions release/ansible/Dockerfile.rhel8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.6 AS builder
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7 AS builder

ENV GO111MODULE=on \
GOFLAGS=-mod=vendor
Expand All @@ -7,7 +7,7 @@ COPY . /go/src/github.com/operator-framework/operator-sdk
RUN cd /go/src/github.com/operator-framework/operator-sdk \
&& make build/ansible-operator VERSION=$(git describe --tags --always)

FROM registry.svc.ci.openshift.org/ocp/4.6:base
FROM registry.svc.ci.openshift.org/ocp/4.7:base

RUN mkdir -p /etc/ansible \
&& echo "localhost ansible_connection=local" > /etc/ansible/hosts \
Expand Down
4 changes: 2 additions & 2 deletions release/helm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.6 AS builder
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7 AS builder

ENV GO111MODULE=on \
GOFLAGS=-mod=vendor
Expand All @@ -7,7 +7,7 @@ COPY . /go/src/github.com/operator-framework/operator-sdk
RUN cd /go/src/github.com/operator-framework/operator-sdk \
&& make build/helm-operator VERSION=$(git describe --tags --always)

FROM registry.svc.ci.openshift.org/ocp/4.6:base
FROM registry.svc.ci.openshift.org/ocp/4.7:base

ENV HOME=/opt/helm \
USER_NAME=helm \
Expand Down
4 changes: 2 additions & 2 deletions release/sdk/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.6 AS builder
FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-1.15-openshift-4.7 AS builder

ENV GO111MODULE=on \
GOFLAGS=-mod=vendor
Expand All @@ -7,7 +7,7 @@ COPY . /go/src/github.com/operator-framework/operator-sdk
RUN cd /go/src/github.com/operator-framework/operator-sdk \
&& make build/operator-sdk VERSION=$(git describe --tags --always)

FROM registry.svc.ci.openshift.org/ocp/4.6:base
FROM registry.svc.ci.openshift.org/ocp/4.7:base

RUN yum install -y \
golang \
Expand Down

0 comments on commit 11b33ae

Please sign in to comment.