Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ RUN make go-build
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM gcr.io/distroless/static:nonroot
WORKDIR /
COPY --from=builder /workspace/bin/manager .
COPY --from=builder /workspace/bin/odf-operator .
COPY --from=builder /workspace/bin/ux-backend-server .
USER 65532:65532

ENTRYPOINT ["/manager"]
ENTRYPOINT ["/odf-operator"]
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
categories: Storage
console.openshift.io/plugins: '["odf-console"]'
containerImage: quay.io/ocs-dev/odf-operator:latest
createdAt: "2026-04-02T07:19:30Z"
createdAt: "2026-04-07T13:01:58Z"
description: OpenShift Data Foundation provides a common control plane for storage
solutions on OpenShift Container Platform.
features.operators.openshift.io/token-auth-aws: "true"
Expand Down Expand Up @@ -389,7 +389,7 @@ spec:
- --leader-elect
- --odf-console-port=9001
command:
- /manager
- /odf-operator
env:
- name: PKGS_CONFIG_MAP_NAME
value: odf-operator-pkgs-config-4.22.0
Expand Down
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
runAsNonRoot: true
containers:
- command:
- /manager
- /odf-operator
args:
- --leader-elect
env:
Expand Down
2 changes: 1 addition & 1 deletion hack/go-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export GO111MODULE=${GO111MODULE:-on}

set -x

go build -a -o ${GOBIN:-bin}/manager main.go
go build -a -o ${GOBIN:-bin}/odf-operator main.go
go build -a -o ${GOBIN:-bin}/ux-backend-server services/ux-backend/main.go
Loading