60 lines
2.1 KiB
Docker
60 lines
2.1 KiB
Docker
# Copyright 2023 DigitalOcean
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
FROM ubuntu:20.04 as builder
|
|
|
|
ARG TEST
|
|
|
|
ENV GOROOT /goroot
|
|
ENV GOPATH /go
|
|
ENV PATH $GOROOT/bin:$PATH
|
|
ENV APPLOC $GOPATH/src/github.com/digitalocean/ceph_exporter
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y apt-transport-https build-essential git curl wget
|
|
|
|
RUN wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add -
|
|
RUN echo "deb https://download.ceph.com/debian-nautilus focal main" >> /etc/apt/sources.list
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --force-yes librados-dev librbd-dev
|
|
|
|
RUN \
|
|
mkdir -p /goroot && \
|
|
curl https://storage.googleapis.com/golang/go1.20.linux-amd64.tar.gz | tar xvzf - -C /goroot --strip-components=1
|
|
|
|
ADD . $APPLOC
|
|
WORKDIR $APPLOC
|
|
RUN go get -d
|
|
# The `-tags nautilus` instructs go-ceph to enable additional support nautilus release.
|
|
# See https://github.com/ceph/go-ceph#installation
|
|
RUN if [ -n "${TEST}" ]; then go test -tags nautilus -v -race -count=1 ./...; fi
|
|
RUN go build -tags nautilus -o /bin/ceph_exporter
|
|
|
|
FROM ubuntu:20.04
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y apt-transport-https curl wget gnupg
|
|
RUN wget -q -O- 'https://download.ceph.com/keys/release.asc' | apt-key add -
|
|
RUN echo "deb https://download.ceph.com/debian-nautilus focal main" >> /etc/apt/sources.list && \
|
|
apt-get update && \
|
|
apt-get install -y --force-yes librados2 librbd1 ceph-common && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=builder /bin/ceph_exporter /bin/ceph_exporter
|
|
RUN chmod +x /bin/ceph_exporter
|
|
|
|
EXPOSE 9128
|
|
ENTRYPOINT ["/bin/ceph_exporter"]
|