From d5cc70e7660c20bffeefd68f40ce716ad02f5f52 Mon Sep 17 00:00:00 2001 From: tamal Date: Fri, 3 Nov 2017 07:26:58 -0700 Subject: [PATCH] Prepare docs for 0.4.2 --- chart/stash/Chart.yaml | 2 +- chart/stash/README.md | 2 +- chart/stash/values.yaml | 2 +- docs/examples/workloads/statefulset.yaml | 2 +- docs/install.md | 4 ++-- docs/tutorial.md | 2 +- docs/workloads.md | 2 +- hack/deploy/stash-with-rbac.yaml | 2 +- hack/deploy/stash-without-rbac.yaml | 2 +- hack/docker/setup.sh | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/chart/stash/Chart.yaml b/chart/stash/Chart.yaml index 6044eba65..55adf595a 100755 --- a/chart/stash/Chart.yaml +++ b/chart/stash/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 description: 'Stash by AppsCode - Backup your Kubernetes Volumes' name: stash version: 0.1.0 -appVersion: 0.4.1 +appVersion: 0.4.2 home: https://github.com/appscode/stash icon: https://cdn.appscode.com/images/icon/stash.png sources: diff --git a/chart/stash/README.md b/chart/stash/README.md index e9dc6ae0f..34c46d0c2 100644 --- a/chart/stash/README.md +++ b/chart/stash/README.md @@ -42,7 +42,7 @@ The following tables lists the configurable parameters of the Stash chart and th | ------------------------ | ----------------------------------------------------------------- | ------------------ | | `replicaCount` | Number of stash operator replicas to create (only 1 is supported) | `1` | | `operator.image` | operator container image | `appscode/stash` | -| `operator.tag` | operator container image tag | `0.4.1` | +| `operator.tag` | operator container image tag | `0.4.2` | | `operator.pullPolicy` | operator container image pull policy | `IfNotPresent` | | `pushgateway.image` | Prometheus pushgateway container image | `prom/pushgateway` | | `pushgateway.tag` | Prometheus pushgateway container image tag | `v0.4.0` | diff --git a/chart/stash/values.yaml b/chart/stash/values.yaml index 39355c2be..38eaf4277 100644 --- a/chart/stash/values.yaml +++ b/chart/stash/values.yaml @@ -5,7 +5,7 @@ replicaCount: 1 operator: image: appscode/stash pullPolicy: IfNotPresent - tag: 0.4.1 + tag: 0.4.2 pushgateway: image: prom/pushgateway pullPolicy: IfNotPresent diff --git a/docs/examples/workloads/statefulset.yaml b/docs/examples/workloads/statefulset.yaml index c10aa52c7..b3eff0289 100644 --- a/docs/examples/workloads/statefulset.yaml +++ b/docs/examples/workloads/statefulset.yaml @@ -109,7 +109,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.name - image: appscode/stash:0.4.1 + image: appscode/stash:0.4.2 imagePullPolicy: IfNotPresent name: stash volumeMounts: diff --git a/docs/install.md b/docs/install.md index 535ee0188..a9055916a 100644 --- a/docs/install.md +++ b/docs/install.md @@ -7,12 +7,12 @@ Stash can be installed using YAML files includes in the [/hack/deploy](/hack/dep ```sh # Install without RBAC roles -$ curl https://raw.githubusercontent.com/appscode/stash/0.4.1/hack/deploy/stash-without-rbac.yaml \ +$ curl https://raw.githubusercontent.com/appscode/stash/0.4.2/hack/deploy/stash-without-rbac.yaml \ | kubectl apply -f - # Install with RBAC roles -$ curl https://raw.githubusercontent.com/appscode/stash/0.4.1/hack/deploy/stash-with-rbac.yaml \ +$ curl https://raw.githubusercontent.com/appscode/stash/0.4.2/hack/deploy/stash-with-rbac.yaml \ | kubectl apply -f - ``` diff --git a/docs/tutorial.md b/docs/tutorial.md index fba777a08..242bdde9b 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -195,7 +195,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.name - image: appscode/stash:0.4.1 + image: appscode/stash:0.4.2 imagePullPolicy: IfNotPresent name: stash resources: {} diff --git a/docs/workloads.md b/docs/workloads.md index acee96740..b39df167c 100644 --- a/docs/workloads.md +++ b/docs/workloads.md @@ -62,7 +62,7 @@ spec: fieldRef: apiVersion: v1 fieldPath: metadata.name - image: appscode/stash:0.4.1 + image: appscode/stash:0.4.2 imagePullPolicy: IfNotPresent name: stash volumeMounts: diff --git a/hack/deploy/stash-with-rbac.yaml b/hack/deploy/stash-with-rbac.yaml index 2d3d6f3b6..fe36d83ab 100644 --- a/hack/deploy/stash-with-rbac.yaml +++ b/hack/deploy/stash-with-rbac.yaml @@ -93,7 +93,7 @@ spec: args: - run - --v=3 - image: appscode/stash:0.4.1 + image: appscode/stash:0.4.2 ports: - containerPort: 56790 name: http diff --git a/hack/deploy/stash-without-rbac.yaml b/hack/deploy/stash-without-rbac.yaml index cff3000c0..0e6c82f05 100644 --- a/hack/deploy/stash-without-rbac.yaml +++ b/hack/deploy/stash-without-rbac.yaml @@ -20,7 +20,7 @@ spec: args: - run - --v=3 - image: appscode/stash:0.4.1 + image: appscode/stash:0.4.2 ports: - containerPort: 56790 name: http diff --git a/hack/docker/setup.sh b/hack/docker/setup.sh index 00d67a0bf..034f33f3d 100755 --- a/hack/docker/setup.sh +++ b/hack/docker/setup.sh @@ -15,7 +15,7 @@ source "$REPO_ROOT/hack/libbuild/common/public_image.sh" APPSCODE_ENV=${APPSCODE_ENV:-dev} IMG=stash RESTIC_VER=${RESTIC_VER:-0.7.3} -RESTIC_BRANCH=${RESTIC_BRANCH:-stash-0.4.1} +RESTIC_BRANCH=${RESTIC_BRANCH:-stash-0.4.2} DIST=$REPO_ROOT/dist mkdir -p $DIST