-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OU-453: Add perses-operator to COO component for Konflux
- Added submodule to link to perses/perses-operator by running `git submodule add https://github.com/perses/perses-operator` - TODO: 1) Need to point to a release branch for perses-operator in .gitmodules file 2) Need to double check Dockerfile.perses-operator points at the right file paths
- Loading branch information
Showing
3 changed files
with
20 additions
and
0 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,15 @@ | ||
FROM alpine AS build-env | ||
RUN apk add --update --no-cache mailcap | ||
|
||
FROM gcr.io/distroless/static-debian12 | ||
|
||
LABEL maintainer="The Perses Authors <[email protected]>" | ||
|
||
USER nobody | ||
|
||
COPY --chown=nobody:nobody perses-operator/bin/manager /bin/manager | ||
COPY --chown=nobody:nobody perses-operator/LICENSE /LICENSE | ||
COPY --from=build-env --chown=nobody:nobody perses-operator/etc/mime.types /etc/mime.types | ||
|
||
EXPOSE 8080 | ||
ENTRYPOINT [ "/bin/manager" ] |
Submodule perses-operator
added at
808b23