diff --git a/Cloud/loki/3.5.0/24.03-lts-sp1/Dockerfile b/Cloud/loki/3.5.0/24.03-lts-sp1/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..6a0fc97daa4e4be3084bae5da57fd402d319a29b --- /dev/null +++ b/Cloud/loki/3.5.0/24.03-lts-sp1/Dockerfile @@ -0,0 +1,30 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} + +ARG TARGETARCH +ARG BUILDARCH +ARG VERSION=3.5.0 + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch64"; \ + fi && \ + curl -fSL --output grafana-logcli.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/logcli-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-loki.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/loki-${VERSION}.${BUILDARCH}.rpm && \ + curl -fSL --output grafana-promtail.rpm https://github.com/grafana/loki/releases/download/v${VERSION}/promtail-${VERSION}.${BUILDARCH}.rpm && \ + yum -y install grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm && \ + rm -rf grafana-loki.rpm grafana-promtail.rpm grafana-logcli.rpm + +COPY local-config.yaml /etc/loki/local-config.yaml + +RUN groupadd -g 10001 loki && \ + adduser -u 10001 -g loki loki && \ + mkdir -p /loki/rules && \ + mkdir -p /loki/rules-temp && \ + chown -R loki:loki /etc/loki /loki + +USER 10001 +EXPOSE 3100 +ENTRYPOINT [ "loki" ] +CMD ["-config.file=/etc/loki/local-config.yaml"] diff --git a/Cloud/loki/3.5.0/24.03-lts-sp1/local-config.yaml b/Cloud/loki/3.5.0/24.03-lts-sp1/local-config.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b74d3561c67867a333146f168c9f5d5e0ee4cf47 --- /dev/null +++ b/Cloud/loki/3.5.0/24.03-lts-sp1/local-config.yaml @@ -0,0 +1,42 @@ +auth_enabled: false + +server: + http_listen_port: 3100 + +common: + instance_addr: 127.0.0.1 + path_prefix: /loki + storage: + filesystem: + chunks_directory: /loki/chunks + rules_directory: /loki/rules + replication_factor: 1 + ring: + kvstore: + store: inmemory + +schema_config: + configs: + - from: 2020-10-24 + store: tsdb + object_store: filesystem + schema: v13 + index: + prefix: index_ + period: 24h + +ruler: + alertmanager_url: http://localhost:9093 + +# By default, Loki will send anonymous, but uniquely-identifiable usage and configuration +# analytics to Grafana Labs. These statistics are sent to https://stats.grafana.org/ +# +# Statistics help us better understand how Loki is used, and they show us performance +# levels for most users. This helps us prioritize features and documentation. +# For more information on what's sent, look at +# https://github.com/grafana/loki/blob/main/pkg/usagestats/stats.go +# Refer to the buildReport method to see what goes into a report. +# +# If you would like to disable reporting, uncomment the following lines: +#analytics: +# reporting_enabled: false \ No newline at end of file diff --git a/Cloud/loki/meta.yml b/Cloud/loki/meta.yml index 9f7501c0642a3dd13b2b5b570efdd59bcfd9df66..7899834dc080ad5080107a9ed96c0113059047bf 100644 --- a/Cloud/loki/meta.yml +++ b/Cloud/loki/meta.yml @@ -23,4 +23,6 @@ 3.3.2-oe2203sp4: path: 3.3.2/22.03-lts-sp4/Dockerfile 3.3.2-oe2203sp1: - path: 3.3.2/22.03-lts-sp1/Dockerfile \ No newline at end of file + path: 3.3.2/22.03-lts-sp1/Dockerfile +3.5.0-oe2403sp1: + path: Cloud/loki/3.5.0/24.03-lts-sp1/Dockerfile \ No newline at end of file