From commits-return-17747-archive-asf-public=cust-asf.ponee.io@pulsar.apache.org Tue Nov 20 02:17:21 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id A3BCD180671 for ; Tue, 20 Nov 2018 02:17:20 +0100 (CET) Received: (qmail 48373 invoked by uid 500); 20 Nov 2018 01:17:19 -0000 Mailing-List: contact commits-help@pulsar.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pulsar.apache.org Delivered-To: mailing list commits@pulsar.apache.org Received: (qmail 48364 invoked by uid 99); 20 Nov 2018 01:17:19 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Nov 2018 01:17:19 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 40E6782630; Tue, 20 Nov 2018 01:17:19 +0000 (UTC) Date: Tue, 20 Nov 2018 01:17:19 +0000 To: "commits@pulsar.apache.org" Subject: [pulsar] branch master updated: Publish pulsar-standalone image along with other images (#3016) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154267663909.16612.8730690249908837102@gitbox.apache.org> From: mmerli@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: pulsar X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: dadac4c3d0688aef4c4698af797b67de1f7b8436 X-Git-Newrev: 76d0c71e7dbb2ad0ad92c1a661f23dce6c232faa X-Git-Rev: 76d0c71e7dbb2ad0ad92c1a661f23dce6c232faa X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. mmerli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pulsar.git The following commit(s) were added to refs/heads/master by this push: new 76d0c71 Publish pulsar-standalone image along with other images (#3016) 76d0c71 is described below commit 76d0c71e7dbb2ad0ad92c1a661f23dce6c232faa Author: Sijie Guo AuthorDate: Mon Nov 19 17:17:14 2018 -0800 Publish pulsar-standalone image along with other images (#3016) *Motivation* `pulsar-standalone` was introduced in 2.2.0 release. However the release script was not updated to publish this image. *Change* add `pulsar-standalone` image to the release script --- docker/publish.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker/publish.sh b/docker/publish.sh index f73bdac..23712df 100755 --- a/docker/publish.sh +++ b/docker/publish.sh @@ -66,20 +66,24 @@ docker tag pulsar:latest ${docker_registry_org}/pulsar:latest docker tag pulsar-all:latest ${docker_registry_org}/pulsar-all:latest docker tag pulsar-grafana:latest ${docker_registry_org}/pulsar-grafana:latest docker tag pulsar-dashboard:latest ${docker_registry_org}/pulsar-dashboard:latest +docker tag pulsar-standalone:latest ${docker_registry_org}/pulsar-standalone:latest docker tag pulsar:latest ${docker_registry_org}/pulsar:$MVN_VERSION docker tag pulsar-all:latest ${docker_registry_org}/pulsar-all:$MVN_VERSION docker tag pulsar-grafana:latest ${docker_registry_org}/pulsar-grafana:$MVN_VERSION docker tag pulsar-dashboard:latest ${docker_registry_org}/pulsar-dashboard:$MVN_VERSION +docker tag pulsar-standalone:latest ${docker_registry_org}/pulsar-standalone:$MVN_VERSION # Push all images and tags docker push ${docker_registry_org}/pulsar:latest docker push ${docker_registry_org}/pulsar-all:latest docker push ${docker_registry_org}/pulsar-grafana:latest docker push ${docker_registry_org}/pulsar-dashboard:latest +docker push ${docker_registry_org}/pulsar-standalone:latest docker push ${docker_registry_org}/pulsar:$MVN_VERSION docker push ${docker_registry_org}/pulsar-all:$MVN_VERSION docker push ${docker_registry_org}/pulsar-grafana:$MVN_VERSION docker push ${docker_registry_org}/pulsar-dashboard:$MVN_VERSION +docker push ${docker_registry_org}/pulsar-standalone:$MVN_VERSION echo "Finished pushing images to ${docker_registry_org}"