mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
5c3a7a5580
* deps: upgrade OS to Fedora 40 * image: measure uki sections uname and sbat for systemd >= 254 * deps: update mainline kernel for Fedora 40 * image: update kernel to 6.6.30 * image: update upload docs --------- Co-authored-by: Malte Poll <1780588+malt3@users.noreply.github.com>
16 lines
730 B
Docker
16 lines
730 B
Docker
FROM fedora:40@sha256:5ce8497aeea599bf6b54ab3979133923d82aaa4f6ca5ced1812611b197c79eb0 AS release
|
|
|
|
RUN dnf install -y https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-8.9.2-x86_64.rpm
|
|
|
|
COPY debugd/metricbeat/templates/ /usr/share/constellogs/templates/
|
|
|
|
# -e enables logging to stderr
|
|
# -E http.enabled=true enables http endpoint as seen in https://github.com/elastic/helm-charts/blob/main/metricbeat/templates/daemonset.yaml
|
|
# --path.home and --path.data set the paths to the metricbeat binary and data directory
|
|
ENTRYPOINT [ "/usr/share/metricbeat/bin/metricbeat", \
|
|
"-e", \
|
|
"-E", "http.enabled=true", \
|
|
"--path.home", "/usr/share/metricbeat", \
|
|
"--path.data", "/usr/share/metricbeat/data" \
|
|
]
|