Skip to content

Commit

Permalink
Prepare docs for 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Nov 3, 2017
1 parent 626fd42 commit d5cc70e
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion chart/stash/Chart.yaml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion chart/stash/README.md
Expand Up @@ -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` |
Expand Down
2 changes: 1 addition & 1 deletion chart/stash/values.yaml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/workloads/statefulset.yaml
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Expand Up @@ -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 -
```

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.md
Expand Up @@ -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: {}
Expand Down
2 changes: 1 addition & 1 deletion docs/workloads.md
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion hack/deploy/stash-with-rbac.yaml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hack/deploy/stash-without-rbac.yaml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hack/docker/setup.sh
Expand Up @@ -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
Expand Down

0 comments on commit d5cc70e

Please sign in to comment.