-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[makefile] Adding target to setup olm kuadrant installation
* Bumps opm version * Creates tasks to load olm needed images to Kind for local testing * Uses custom catalog Dockerfile [catalog] Custom Dockerfile for building catalog * In order to use instead of autogenerated index.Dockerfile * To mitigate operator-framework/operator-registry#619 [gh] Using custom catalog.Dockerfile to build catalog images [gh] Adding platforms for building images [makefile] Adding platform param in custom docker build command
- Loading branch information
1 parent
8a789ed
commit b98cdea
Showing
2 changed files
with
94 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM quay.io/operator-framework/upstream-opm-builder | ||
LABEL operators.operatorframework.io.index.database.v1=/database/index.db | ||
ADD database/index.db /database/index.db | ||
RUN mkdir /registry && chmod 775 /registry | ||
EXPOSE 50051 | ||
WORKDIR /registry | ||
ENTRYPOINT ["/bin/opm"] | ||
CMD ["registry", "serve", "--database", "/database/index.db"] |