Bump fluentbit version, change to ubi7/ubi base image

This commit is contained in:
Naveen Malik 2021-06-15 17:39:42 -04:00
Родитель 67421e94ec
Коммит 30d96047af
3 изменённых файлов: 9 добавлений и 6 удалений

Просмотреть файл

@ -1,7 +1,7 @@
FROM registry.access.redhat.com/rhel7:latest
FROM registry.access.redhat.com/ubi7/ubi:latest
ARG VERSION
RUN \
echo -e '[td-agent-bit]\nbaseurl=https://packages.fluentbit.io/centos/7/$basearch' >/etc/yum.repos.d/td-agent-bit.repo && \
echo -e '[td-agent-bit]\nname=td-agent-bit\nbaseurl=https://packages.fluentbit.io/centos/7/$basearch' >/etc/yum.repos.d/td-agent-bit.repo && \
rpm --import https://packages.fluentbit.io/fluentbit.key && \
yum -y update && \
yum -y install td-agent-bit-$VERSION && \

Просмотреть файл

@ -2,6 +2,9 @@ SHELL = /bin/bash
COMMIT = $(shell git rev-parse --short=7 HEAD)$(shell [[ $$(git status --porcelain) = "" ]] || echo -dirty)
ARO_IMAGE ?= ${RP_IMAGE_ACR}.azurecr.io/aro:$(COMMIT)
# fluentbit version must also be updated in RP code, see pkg/util/version/const.go
FLUENTBIT_VERSION = 1.7.8-1
ifneq ($(shell uname -s),Darwin)
export CGO_CFLAGS=-Dgpgme_off_t=off_t
endif
@ -48,8 +51,8 @@ image-aro-multistage:
docker build --no-cache -f Dockerfile.aro-multistage -t $(ARO_IMAGE) .
image-fluentbit:
docker build --no-cache --build-arg VERSION=1.6.10-1 \
-f Dockerfile.fluentbit -t ${RP_IMAGE_ACR}.azurecr.io/fluentbit:1.6.10-1 .
docker build --no-cache --build-arg VERSION=$(FLUENTBIT_VERSION) \
-f Dockerfile.fluentbit -t ${RP_IMAGE_ACR}.azurecr.io/fluentbit:$(FLUENTBIT_VERSION) .
image-proxy: proxy
docker pull registry.access.redhat.com/ubi8/ubi-minimal
@ -70,7 +73,7 @@ ifeq ("${RP_IMAGE_ACR}-$(BRANCH)","arointsvc-master")
endif
publish-image-fluentbit: image-fluentbit
docker push ${RP_IMAGE_ACR}.azurecr.io/fluentbit:1.6.10-1
docker push ${RP_IMAGE_ACR}.azurecr.io/fluentbit:$(FLUENTBIT_VERSION)
publish-image-proxy: image-proxy
docker push ${RP_IMAGE_ACR}.azurecr.io/proxy:latest

Просмотреть файл

@ -45,7 +45,7 @@ var (
// FluentbitImage contains the location of the Fluentbit container image
func FluentbitImage(acrDomain string) string {
return acrDomain + "/fluentbit:1.6.10-1"
return acrDomain + "/fluentbit:1.7.8-1"
}
// MdmImage contains the location of the MDM container image