From 2a2a529e1cf12cd79ba02a26fcea0b2846aa3d99 Mon Sep 17 00:00:00 2001 From: jenkins-x-bot Date: Tue, 6 Oct 2020 22:24:48 +0800 Subject: [PATCH] Bumped to v2.5.6 --- Dockerfile | 2 +- Jenkinsfile | 11 +++++------ 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 66a362d..78f94ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ LABEL maintainer="Jonathan Ervine " ENV LANG='en_US.UTF-8' \ LANGUAGE='en_US.UTF-8' \ TERM='xterm' \ - VERSION='2.5.5' \ + VERSION='2.5.6' \ TAUT_USER='tautulli' \ TAUT_UID=1003 \ TAUT_GID=1003 diff --git a/Jenkinsfile b/Jenkinsfile index a637d6d..16634a2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ kind: Pod spec: containers: - name: kaniko - image: gcr.io/kaniko-project/executor:debug-539ddefcae3fd6b411a95982a830d987f4214251 + image: gcr.io/kaniko-project/executor:debug imagePullPolicy: Always command: - /busybox/cat @@ -27,13 +27,12 @@ spec: stage('Build with Kaniko') { git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-tautulli.git', credentialsId: 'jenkins-to-git' container('kaniko') { - sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.5.5 --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.5' + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.5.6 --destination=harbor.ervine.dev/public/x86_64/alpine/tautulli:v2.5' } } + stage('Notify gchat') { + hangoutsNotify message: "Tautulli 2.5.6 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + } } } -stage('Notify gchat') { - hangoutsNotify message: "Tautulli 2.5.5 on Alpine has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false -} -