From 7c49292204f0527ea64ff1c28dcac627bd1d7985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Sat, 8 Dec 2018 23:54:40 +0100 Subject: [PATCH] [stable/mongodb-replicaset] Update peer-finder (#9707) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Reinhard Nägele --- stable/mongodb-replicaset/Chart.yaml | 2 +- stable/mongodb-replicaset/README.md | 8 ++++---- stable/mongodb-replicaset/install/Dockerfile | 5 +++-- stable/mongodb-replicaset/install/Makefile | 10 +++++----- stable/mongodb-replicaset/values.yaml | 4 ++-- 5 files changed, 15 insertions(+), 14 deletions(-) diff --git a/stable/mongodb-replicaset/Chart.yaml b/stable/mongodb-replicaset/Chart.yaml index 03d74bdc31..0c5fc63ca0 100644 --- a/stable/mongodb-replicaset/Chart.yaml +++ b/stable/mongodb-replicaset/Chart.yaml @@ -1,6 +1,6 @@ name: mongodb-replicaset home: https://github.com/mongodb/mongo -version: 3.8.0 +version: 3.8.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/README.md b/stable/mongodb-replicaset/README.md index 918f1d959d..c28380bb9e 100644 --- a/stable/mongodb-replicaset/README.md +++ b/stable/mongodb-replicaset/README.md @@ -38,12 +38,12 @@ The following table lists the configurable parameters of the mongodb chart and t | `podDisruptionBudget` | Pod disruption budget | `{}` | | `port` | MongoDB port | `27017` | | `imagePullSecrets` | Image pull secrets | `[]` | -| `installImage.repository` | Image name for the install container | `k8s.gcr.io/mongodb-install` | -| `installImage.tag` | Image tag for the install container | `0.5` | +| `installImage.repository` | Image name for the install container | `unguiculus/mongodb-install` | +| `installImage.tag` | Image tag for the install container | `0.7` | | `installImage.pullPolicy` | Image pull policy for the init container that establishes the replica set | `IfNotPresent` | | `copyConfigImage.repository` | Image name for the copy config init container | `busybox` | -| `copyConfigImage.tag` | Image tag for the copy config init container | `latest` | -| `copyConfigImage.pullPolicy` | Image pull policy for the copy config init container | `Always` | +| `copyConfigImage.tag` | Image tag for the copy config init container | `1.29.3` | +| `copyConfigImage.pullPolicy` | Image pull policy for the copy config init container | `IfNotPresent` | | `image.repository` | MongoDB image name | `mongo` | | `image.tag` | MongoDB image tag | `3.6` | | `image.pullPolicy` | MongoDB image pull policy | `IfNotPresent` | diff --git a/stable/mongodb-replicaset/install/Dockerfile b/stable/mongodb-replicaset/install/Dockerfile index 4043e38ff9..9084f96d25 100644 --- a/stable/mongodb-replicaset/install/Dockerfile +++ b/stable/mongodb-replicaset/install/Dockerfile @@ -12,8 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM alpine:3.7 -MAINTAINER Anirudh Ramanathan +FROM alpine:3.8 + +LABEL maintainer="Reinhard Nägele " RUN apk update && apk add bash openssl && wget -qO /peer-finder http://storage.googleapis.com/kubernetes-release/pets/peer-finder diff --git a/stable/mongodb-replicaset/install/Makefile b/stable/mongodb-replicaset/install/Makefile index 2ae191ea8b..1a9708558f 100644 --- a/stable/mongodb-replicaset/install/Makefile +++ b/stable/mongodb-replicaset/install/Makefile @@ -14,14 +14,14 @@ all: push -TAG = 0.6 -PREFIX = staging-k8s.gcr.io/mongodb-install +TAG = 0.7 +PREFIX = unguiculus/mongodb-install -container: +build: docker build -t $(PREFIX):$(TAG) . -push: container - gcloud docker -- push $(PREFIX):$(TAG) +push: build + docker push $(PREFIX):$(TAG) clean: docker rmi $(PREFIX):$(TAG) diff --git a/stable/mongodb-replicaset/values.yaml b/stable/mongodb-replicaset/values.yaml index 9778933f71..354addb9c4 100644 --- a/stable/mongodb-replicaset/values.yaml +++ b/stable/mongodb-replicaset/values.yaml @@ -27,8 +27,8 @@ imagePullSecrets: [] # Specs for the Docker image for the init container that establishes the replica set installImage: - repository: k8s.gcr.io/mongodb-install - tag: 0.6 + repository: unguiculus/mongodb-install + tag: 0.7 pullPolicy: IfNotPresent # Specs for the Docker image for the copyConfig init container