From 1bee666fa01022bb3ae1befa113bb30b788cc5b7 Mon Sep 17 00:00:00 2001 From: KrisG Date: Tue, 7 Jul 2020 06:37:57 +0100 Subject: [PATCH] [stable/mongodb-replicaset] Make unguiculus/mongodb-install multiarch and include arm platforms (#22322) (#22323) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - also bumped mongodb-install image version number - bumped chart version number Signed-off-by: Kris Gandhi Co-authored-by: Kris Gandhi Co-authored-by: Reinhard Nägele --- stable/mongodb-replicaset/Chart.yaml | 2 +- stable/mongodb-replicaset/install/Makefile | 12 +++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/stable/mongodb-replicaset/Chart.yaml b/stable/mongodb-replicaset/Chart.yaml index 523c4ef2f6..e55b1898e0 100644 --- a/stable/mongodb-replicaset/Chart.yaml +++ b/stable/mongodb-replicaset/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: mongodb-replicaset home: https://github.com/mongodb/mongo -version: 3.16.0 +version: 3.16.1 appVersion: 3.6 description: NoSQL document-oriented database that stores JSON-like documents with dynamic schemas, simplifying the integration of data in content-driven applications. diff --git a/stable/mongodb-replicaset/install/Makefile b/stable/mongodb-replicaset/install/Makefile index 1a9708558f..0383525d13 100644 --- a/stable/mongodb-replicaset/install/Makefile +++ b/stable/mongodb-replicaset/install/Makefile @@ -14,14 +14,12 @@ all: push -TAG = 0.7 +TAG = 0.8 PREFIX = unguiculus/mongodb-install +PLATFORM = linux/amd64,linux/arm/v7,linux/arm64/v8 build: - docker build -t $(PREFIX):$(TAG) . + docker buildx build -t $(PREFIX):$(TAG) --platform $(PLATFORM) . -push: build - docker push $(PREFIX):$(TAG) - -clean: - docker rmi $(PREFIX):$(TAG) +push: + docker buildx build -t $(PREFIX):$(TAG) --platform $(PLATFORM) --push .