Skip to content

Commit 94883e6

Browse files
committed
Telegraf 1.15.0 release
1 parent 15fb800 commit 94883e6

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

telegraf/1.12/Dockerfile renamed to telegraf/1.15/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM buildpack-deps:stretch-curl
1+
FROM buildpack-deps:buster-curl
22

33
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
44
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends iputils-ping snmp procps lm-sensors && \
@@ -13,7 +13,7 @@ RUN set -ex && \
1313
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
1414
done
1515

16-
ENV TELEGRAF_VERSION 1.12.6
16+
ENV TELEGRAF_VERSION 1.15.0
1717
RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" && \
1818
case "${dpkgArch##*-}" in \
1919
amd64) ARCH='amd64';; \

telegraf/1.12/alpine/Dockerfile renamed to telegraf/1.15/alpine/Dockerfile

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM alpine:3.9
1+
FROM alpine:3.12
22

33
RUN echo 'hosts: files dns' >> /etc/nsswitch.conf
44
RUN apk add --no-cache iputils ca-certificates net-snmp-tools procps lm_sensors tzdata && \
55
update-ca-certificates
66

7-
ENV TELEGRAF_VERSION 1.12.6
7+
ENV TELEGRAF_VERSION 1.15.0
88

99
RUN set -ex && \
1010
apk add --no-cache --virtual .build-deps wget gnupg tar && \
@@ -15,14 +15,14 @@ RUN set -ex && \
1515
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
1616
gpg --keyserver keyserver.pgp.com --recv-keys "$key" ; \
1717
done && \
18-
wget --no-verbose https://dl.influxdata.com/telegraf/releases/telegraf-${TELEGRAF_VERSION}-static_linux_amd64.tar.gz.asc && \
19-
wget --no-verbose https://dl.influxdata.com/telegraf/releases/telegraf-${TELEGRAF_VERSION}-static_linux_amd64.tar.gz && \
20-
gpg --batch --verify telegraf-${TELEGRAF_VERSION}-static_linux_amd64.tar.gz.asc telegraf-${TELEGRAF_VERSION}-static_linux_amd64.tar.gz && \
18+
wget --no-verbose https://dl.influxdata.com/telegraf/releases/telegraf-${TELEGRAF_VERSION}_static_linux_amd64.tar.gz.asc && \
19+
wget --no-verbose https://dl.influxdata.com/telegraf/releases/telegraf-${TELEGRAF_VERSION}_static_linux_amd64.tar.gz && \
20+
gpg --batch --verify telegraf-${TELEGRAF_VERSION}_static_linux_amd64.tar.gz.asc telegraf-${TELEGRAF_VERSION}_static_linux_amd64.tar.gz && \
2121
mkdir -p /usr/src /etc/telegraf && \
22-
tar -C /usr/src -xzf telegraf-${TELEGRAF_VERSION}-static_linux_amd64.tar.gz && \
23-
mv /usr/src/telegraf*/telegraf.conf /etc/telegraf/ && \
24-
chmod +x /usr/src/telegraf*/* && \
25-
cp -a /usr/src/telegraf*/* /usr/bin/ && \
22+
tar -C /usr/src -xzf telegraf-${TELEGRAF_VERSION}_static_linux_amd64.tar.gz && \
23+
mv /usr/src/telegraf*/etc/telegraf/telegraf.conf /etc/telegraf/ && \
24+
mkdir /etc/telegraf/telegraf.d && \
25+
cp -a /usr/src/telegraf*/usr/bin/telegraf /usr/bin/ && \
2626
gpgconf --kill all && \
2727
rm -rf *.tar.gz* /usr/src /root/.gnupg && \
2828
apk del .build-deps
File renamed without changes.

telegraf/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"David Reimschussel <[email protected]> (@reimda)",
77
"Steven Soroka <[email protected]> (@ssoroka)"
88
],
9-
"versions": ["1.12", "1.13", "1.14"],
9+
"versions": ["1.13", "1.14", "1.15"],
1010
"architectures": [
1111
"amd64",
1212
"arm32v7",

0 commit comments

Comments
 (0)