Skip to content

arewm/konflux-operator-sdk-builder

 
 

Repository files navigation

Operator SDK Builder

This repository contains the build configurations for building the operator-sdk-builder image.

The builder image contains the following tools:

Refer to the .gitmodules file in order to see the versions of operator-sdk and kustomize.

Usage

FROM konflux-ci/operator-sdk-builder:latest as builder

COPY ./. /repo
WORKDIR /repo
RUN kustomize build config/manifests/ \
    | operator-sdk generate bundle --output-dir build

FROM scratch

COPY --from=builder /repo/build/manifests /manifests/
COPY --from=builder /repo/build/metadata /metadata/

About

Container image for building OLM operators

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 100.0%