Skip to content

Commit 78a5b96

Browse files
add memcached helm test
1 parent 7ff4cec commit 78a5b96

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

Makefile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ SOURCES = $(shell find . -name '*.go' -not -path "*/vendor/*")
1818

1919
ANSIBLE_BASE_IMAGE = quay.io/operator-framework/ansible-operator
2020
HELM_BASE_IMAGE = quay.io/operator-framework/helm-operator
21+
HELM_BASE_MEMCACHED_IMAGE = quay.io/operator-framework/memcached-operator
2122
SCORECARD_PROXY_BASE_IMAGE = quay.io/operator-framework/scorecard-proxy
2223

2324
ANSIBLE_IMAGE ?= $(ANSIBLE_BASE_IMAGE)
2425
HELM_IMAGE ?= $(HELM_BASE_IMAGE)
26+
HELM_MEMCACHED_IMAGE ?= $(HELM_BASE_MEMCACHED_IMAGE)
2527
SCORECARD_PROXY_IMAGE ?= $(SCORECARD_PROXY_BASE_IMAGE)
2628

2729
HELM_ARCHES:="amd64" "ppc64le"
@@ -154,6 +156,8 @@ test-e2e-ansible-molecule: image-build-ansible
154156

155157
test-e2e-helm: image-build-helm
156158
./hack/tests/e2e-helm.sh
159+
image-build-helm-memcached
160+
./hack/tests/e2e-helm-memcached.sh
157161

158162
# Image scaffold/build/push.
159163
.PHONY: image image-scaffold-ansible image-scaffold-helm image-build image-build-ansible image-build-helm image-push image-push-ansible image-push-helm
@@ -174,8 +178,12 @@ image-build-ansible: build/operator-sdk-dev-x86_64-linux-gnu
174178
image-build-helm: build/operator-sdk-dev
175179
./hack/image/build-helm-image.sh $(HELM_BASE_IMAGE):dev
176180

181+
image-build-helm-memcached: build/operator-sdk-dev
182+
./hack/image/build-helm-memcached-image.sh $(HELM_BASE_MEMCACHED_IMAGE):dev
183+
184+
177185
image-build-scorecard-proxy:
178-
./hack/image/build-scorecard-proxy-image.sh $(SCORECARD_PROXY_BASE_IMAGE):dev
186+
./hack/image/build-scorecard-proxy-image.sh $(SCORECARD_PROXY_BASE_IMAGE):de
179187

180188
image-push: image-push-ansible image-push-helm image-push-scorecard-proxy ## Push all images
181189

@@ -185,6 +193,9 @@ image-push-ansible:
185193
image-push-helm:
186194
./hack/image/push-image-tags.sh $(HELM_BASE_IMAGE):dev $(HELM_IMAGE)-$(shell go env GOARCH)
187195

196+
image-push-helm-memcached:
197+
./hack/image/push-image-tags.sh $(HELM_BASE_MEMCACHED_IMAGE):dev $(HELM_MEMCACHED_IMAGE)-$(shell go env GOARCH)
198+
188199
image-push-helm-multiarch:
189200
./hack/image/push-manifest-list.sh $(HELM_IMAGE) ${HELM_ARCHES}
190201

0 commit comments

Comments
 (0)