Skip to content
Open
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
9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,6 @@ ocp-logging = [
"sources-kubernetes_logs",
"sources-prometheus",
"sources-internal_metrics",
"sources-demo_logs",
"sources-http_server",
"sources-syslog",
"sources-opentelemetry",
Expand All @@ -533,10 +532,8 @@ ocp-logging = [
"sinks-azure_logs_ingestion",
"sinks-azure_monitor_logs",
"sinks-elasticsearch",
"sinks-file",
"sinks-kafka",
"sinks-loki",
"sinks-console",
"sinks-prometheus",
"sinks-gcp",
"sinks-splunk_hec",
Expand All @@ -549,6 +546,12 @@ ocp-logging = [

"unix"
]
ocp-logging-devel = [
"ocp-logging",
"sources-demo_logs",
"sinks-console",
"sinks-file"
]

# Default features for *-unknown-linux-gnu and *-apple-darwin
default = ["enable-unix", "rdkafka?/gssapi-vendored"]
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ RUN mkdir -p /src
WORKDIR /src
COPY . /src
RUN /src/scripts/environment/install-protoc.sh
RUN make build

ARG FEATURES=ocp-logging
RUN echo "FEATURES=${FEATURES}" && make build FEATURES=${FEATURES}

FROM registry.access.redhat.com/ubi9/ubi-minimal

Expand Down