@@ -29,7 +29,7 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
29
29
#
30
30
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
31
31
# operatingopenshift.org/le-operator-bundle:$VERSION and operatingopenshift.org/le-operator-catalog:$VERSION.
32
- IMAGE_TAG_BASE ?= operatingopenshift.org /le-operator
32
+ IMAGE_TAG_BASE ?= quay.io/mdewald /le-operator
33
33
34
34
# BUNDLE_IMG defines the image:tag used for the bundle.
35
35
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
@@ -97,10 +97,10 @@ run: manifests generate fmt vet ## Run a controller from your host.
97
97
go run ./main.go
98
98
99
99
docker-build : test # # Build docker image with the manager.
100
- docker build -t ${IMG} .
100
+ podman build -t ${IMG} .
101
101
102
102
docker-push : # # Push docker image with the manager.
103
- docker push ${IMG}
103
+ podman push ${IMG}
104
104
105
105
# #@ Deployment
106
106
@@ -153,7 +153,7 @@ bundle: manifests kustomize ## Generate bundle manifests and metadata, then vali
153
153
154
154
.PHONY : bundle-build
155
155
bundle-build : # # Build the bundle image.
156
- docker build -f bundle.Dockerfile -t $(BUNDLE_IMG ) .
156
+ podman build -f bundle.Dockerfile -t $(BUNDLE_IMG ) .
157
157
158
158
.PHONY : bundle-push
159
159
bundle-push : # # Push the bundle image.
@@ -193,7 +193,7 @@ endif
193
193
# https://github.com/operator-framework/community-operators/blob/7f1438c/docs/packaging-operator.md#updating-your-existing-operator
194
194
.PHONY : catalog-build
195
195
catalog-build : opm # # Build a catalog image.
196
- $(OPM ) index add --container-tool docker --mode semver --tag $(CATALOG_IMG ) --bundles $(BUNDLE_IMGS ) $(FROM_INDEX_OPT )
196
+ $(OPM ) index add --container-tool podman --mode semver --tag $(CATALOG_IMG ) --bundles $(BUNDLE_IMGS ) $(FROM_INDEX_OPT )
197
197
198
198
# Push the catalog image.
199
199
.PHONY : catalog-push
0 commit comments