Skip to content

Commit f2199dc

Browse files
authored
Merge pull request kubernetes-retired#1993 from 007/update-container-dependencies
Update influxdb and grafana dependencies
2 parents ab54e06 + 6c02a7f commit f2199dc

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed

deploy/kube-config/influxdb/grafana.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: grafana
16-
image: k8s.gcr.io/heapster-grafana-amd64:v4.4.3
16+
image: k8s.gcr.io/heapster-grafana-amd64:v5.0.4
1717
ports:
1818
- containerPort: 3000
1919
protocol: TCP

deploy/kube-config/influxdb/influxdb.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
spec:
1414
containers:
1515
- name: influxdb
16-
image: k8s.gcr.io/heapster-influxdb-amd64:v1.3.3
16+
image: k8s.gcr.io/heapster-influxdb-amd64:v1.5.2
1717
volumeMounts:
1818
- mountPath: /data
1919
name: influxdb-storage

grafana/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,37 +19,37 @@
1919

2020
all: build
2121

22-
VERSION?=v4.4.3
23-
DEB_VERSION?=4.4.3
22+
VERSION?=v5.0.4
23+
DEB_VERSION?=5.0.4
2424

2525
PREFIX?=staging-k8s.gcr.io
2626
ARCH?=amd64
2727
TEMP_DIR:=$(shell mktemp -d)
2828
LDFLAGS=-w -X main.version=$(VERSION) -X main.commit=unknown-dev -X main.timestamp=0 -extldflags '-static'
29-
KUBE_CROSS_IMAGE=k8s.gcr.io/kube-cross:v1.8.3-2
29+
KUBE_CROSS_IMAGE=k8s.gcr.io/kube-cross:v1.9.3-2
3030

3131
ALL_ARCHITECTURES=amd64 arm arm64 ppc64le s390x
3232
ML_PLATFORMS=linux/amd64,linux/arm,linux/arm64,linux/ppc64le,linux/s390x
3333

3434
# Set default base image dynamically for each arch
3535
ifeq ($(ARCH),amd64)
36-
BASEIMAGE?=busybox
36+
BASEIMAGE?=busybox:glibc
3737
CC=gcc
3838
endif
3939
ifeq ($(ARCH),arm)
40-
BASEIMAGE?=armhf/busybox
40+
BASEIMAGE?=armhf/busybox:glibc
4141
CC=arm-linux-gnueabihf-gcc
4242
endif
4343
ifeq ($(ARCH),arm64)
44-
BASEIMAGE?=aarch64/busybox
44+
BASEIMAGE?=aarch64/busybox:glibc
4545
CC=aarch64-linux-gnu-gcc
4646
endif
4747
ifeq ($(ARCH),ppc64le)
48-
BASEIMAGE?=ppc64le/busybox
48+
BASEIMAGE?=ppc64le/busybox:glibc
4949
CC=powerpc64le-linux-gnu-gcc
5050
endif
5151
ifeq ($(ARCH),s390x)
52-
BASEIMAGE?=s390x/busybox
52+
BASEIMAGE?=s390x/busybox:glibc
5353
CC=s390x-linux-gnu-gcc
5454
endif
5555

grafana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Grafana Image For Heapster/InfluxDB
22

33
## What's in it:
4-
- Grafana 4
4+
- Grafana 5
55
- A Go binary that:
66
- creates a datasource for InfluxDB
77
- creates a couple of dashboards during startup.

grafana/RELEASES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release Notes for Grafana container.
22

3+
## 5.0.4 (18-04-2018)
4+
- Support Grafana 5.0.4.
5+
36
## 4.4.1 (18-07-2017)
47
- Image includes grafana.ini configuration file.
58
- Support Grafana 4.4.1.

influxdb/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919

2020
all: build
2121

22-
VERSION?=v1.3.3
22+
VERSION?=v1.5.2
2323
PREFIX?=staging-k8s.gcr.io
2424
ARCH?=amd64
25-
GOLANG_VERSION=1.8
25+
GOLANG_VERSION=1.10
2626
TEMP_DIR:=$(shell mktemp -d)
2727

2828
ALL_ARCHITECTURES=amd64 arm arm64 ppc64le s390x

influxdb/RELEASES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release Notes for the Heapster InfluxDB container.
22

3+
## v1.5.2 (04-18-2018)
4+
- Updated to version 1.5.2; bumped Go build container to 1.10
5+
36
## v1.1.1 (11.1.2016)
47
- Updated to version v1.1.1; bumped Godeps and modified some code in heapster to use the latest schema
58

0 commit comments

Comments
 (0)