Skip to content

Commit 20bcdc6

Browse files
committed
changes after rebase
Signed-off-by: Bryce Palmer <bpalmer@redhat.com>
1 parent 4ecde2b commit 20bcdc6

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

hack/generate/samples/ansible/advanced_molecule.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ func updateDockerfile(dir string) {
201201
log.Info("replacing project Dockerfile to use ansible base image with the dev tag")
202202
err := kbutil.ReplaceRegexInFile(
203203
filepath.Join(dir, "Dockerfile"),
204-
"quay.io/operator-framework/ansible-operator:.*",
205-
"quay.io/operator-framework/ansible-operator:dev")
204+
"quay.io/operator-framework/ansible-operator-plugins:.*",
205+
"quay.io/operator-framework/ansible-operator-plugins:dev")
206206
pkg.CheckError("replacing Dockerfile", err)
207207

208208
log.Info("inserting code to Dockerfile")

hack/generate/samples/ansible/memcached_molecule.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func ImplementMemcachedMolecule(sample sample.Sample, image string) {
7777
}
7878

7979
log.Info("replacing project Dockerfile to use ansible base image with the dev tag")
80-
err := kbutil.ReplaceRegexInFile(filepath.Join(sample.Dir(), "Dockerfile"), "quay.io/operator-framework/ansible-operator:.*", "quay.io/operator-framework/ansible-operator:dev")
80+
err := kbutil.ReplaceRegexInFile(filepath.Join(sample.Dir(), "Dockerfile"), "quay.io/operator-framework/ansible-operator-plugins:.*", "quay.io/operator-framework/ansible-operator-plugins:dev")
8181
pkg.CheckError("replacing Dockerfile", err)
8282

8383
log.Info("adding RBAC permissions")

images/ansible-operator/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ RUN set -e && yum clean all && rm -rf /var/cache/yum/* \
5454

5555
COPY --from=basebuilder /usr/local/lib64/python3.9/site-packages /usr/local/lib64/python3.9/site-packages
5656
COPY --from=basebuilder /usr/local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages
57+
COPY --from=basebuilder /usr/local/bin /usr/local/bin
5758

5859
ENV TINI_VERSION=v0.19.0
5960
RUN curl -L -o /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${TARGETARCH} \

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ var (
2828
// and release process, this variable will be removed.
2929

3030
// TODO: find a way to make this automated. For now manually update this before releases.
31-
ImageVersion = "v1.31.0"
31+
ImageVersion = "v0.0.0"
3232
)

testdata/memcached-molecule-operator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/operator-framework/ansible-operator:dev
1+
FROM quay.io/operator-framework/ansible-operator-plugins:dev
22

33
COPY requirements.yml ${HOME}/requirements.yml
44
RUN ansible-galaxy collection install -r ${HOME}/requirements.yml \

testdata/memcached-molecule-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ ifeq (,$(shell which ansible-operator 2>/dev/null))
100100
@{ \
101101
set -e ;\
102102
mkdir -p $(dir $(ANSIBLE_OPERATOR)) ;\
103-
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/ansible-operator-plugins/releases/download/v1.31.0/ansible-operator_$(OS)_$(ARCH) ;\
103+
curl -sSLo $(ANSIBLE_OPERATOR) https://github.com/operator-framework/ansible-operator-plugins/releases/download/v0.0.0/ansible-operator_$(OS)_$(ARCH) ;\
104104
chmod +x $(ANSIBLE_OPERATOR) ;\
105105
}
106106
else

0 commit comments

Comments
 (0)