Skip to content

Commit

Permalink
Prepare docs for 0.2.0 release. (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
tamalsaha committed Aug 4, 2017
1 parent d1240eb commit 90585c8
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion chart/kubed/Chart.yaml
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
description: 'Kubed by AppsCode - Kubernetes daemon'
name: kubed
version: 0.1.0
appVersion: 0.1.0
appVersion: 0.2.0
home: https://github.com/appscode/kubed
icon: https://cdn.appscode.com/images/icon/kubed.png
sources:
Expand Down
2 changes: 1 addition & 1 deletion chart/kubed/README.md
Expand Up @@ -43,7 +43,7 @@ The following tables lists the configurable parameters of the Kubed chart and th
| ------------------| ------------------------------------------------------------------|--------------------|
| `replicaCount` | Number of kubed operator replicas to create (only 1 is supported) | `1` |
| `.image` | container image | `appscode/kubed` |
| `tag` | container image tag | `0.1.0` |
| `tag` | container image tag | `0.2.0` |
| `pullPolicy` | container image pull policy | `IfNotPresent` |
| `rbac.install` | install required rbac service account, roles and rolebindings | `false` |
| `rbac.apiVersion` | rbac api version v1alpha1\|v1beta1 | `v1beta1` |
Expand Down
2 changes: 1 addition & 1 deletion chart/kubed/values.yaml
Expand Up @@ -5,7 +5,7 @@ replicaCount: 1
kubed:
image: appscode/kubed
pullPolicy: IfNotPresent
tag: 0.1.0
tag: 0.2.0
## Install Default RBAC roles and bindings
rbac:
install: false
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/apiserver/search-result.json
Expand Up @@ -513,7 +513,7 @@
},
{
"names": [
"appscode/kubed:0.1.0"
"appscode/kubed:0.2.0"
],
"sizeBytes": 82301225
},
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/cluster-snapshot/local/with-rbac.yaml
Expand Up @@ -106,7 +106,7 @@ spec:
serviceAccountName: kubed
containers:
- name: kubed
image: appscode/kubed:0.1.0
image: appscode/kubed:0.2.0
imagePullPolicy: IfNotPresent
args:
- run
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/cluster-snapshot/local/without-rbac.yaml
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: kubed
image: appscode/kubed:0.1.0
image: appscode/kubed:0.2.0
imagePullPolicy: IfNotPresent
args:
- run
Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Expand Up @@ -81,12 +81,12 @@ Kubed can be installed using YAML files includes in the [/hack/deploy](/hack/dep

```console
# Install without RBAC roles
$ curl https://raw.githubusercontent.com/appscode/kubed/0.1.0/hack/deploy/without-rbac.yaml \
$ curl https://raw.githubusercontent.com/appscode/kubed/0.2.0/hack/deploy/without-rbac.yaml \
| kubectl apply -f -


# Install with RBAC roles
$ curl https://raw.githubusercontent.com/appscode/kubed/0.1.0/hack/deploy/with-rbac.yaml \
$ curl https://raw.githubusercontent.com/appscode/kubed/0.2.0/hack/deploy/with-rbac.yaml \
| kubectl apply -f -
```

Expand Down
2 changes: 1 addition & 1 deletion hack/deploy/with-rbac.yaml
Expand Up @@ -106,7 +106,7 @@ spec:
serviceAccountName: kubed
containers:
- name: kubed
image: appscode/kubed:0.1.0
image: appscode/kubed:0.2.0
imagePullPolicy: IfNotPresent
args:
- run
Expand Down
2 changes: 1 addition & 1 deletion hack/deploy/without-rbac.yaml
Expand Up @@ -14,7 +14,7 @@ spec:
spec:
containers:
- name: kubed
image: appscode/kubed:0.1.0
image: appscode/kubed:0.2.0
imagePullPolicy: IfNotPresent
args:
- run
Expand Down

0 comments on commit 90585c8

Please sign in to comment.