Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update chart repository location #209

Merged
merged 1 commit into from
Apr 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 7 additions & 5 deletions chart/stable/kubedb/README.md → chart/kubedb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
## TL;DR;

```console
$ helm install stable/kubedb
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install appscode/kubedb
```

## Introduction
Expand All @@ -19,7 +21,7 @@ This chart bootstraps a [KubeDB controller](https://github.com/kubedb/cli) deplo
To install the chart with the release name `my-release`:

```console
$ helm install stable/kubedb --name my-release
$ helm install appscode/kubedb --name my-release
```
The command deploys KubeDB operator on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.

Expand Down Expand Up @@ -62,14 +64,14 @@ The following tables lists the configurable parameters of the KubeDB chart and t
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:

```console
$ helm install --name my-release --set image.tag=v0.2.1 stable/kubedb
$ helm install --name my-release --set image.tag=v0.2.1 appscode/kubedb
```

Alternatively, a YAML file that specifies the values for the parameters can be provided while
installing the chart. For example:

```console
$ helm install --name my-release --values values.yaml stable/kubedb
$ helm install --name my-release --values values.yaml appscode/kubedb
```

## RBAC
Expand All @@ -90,5 +92,5 @@ If the output contains "beta", you may install the chart with RBAC enabled (see
To enable the creation of RBAC resources (On clusters with RBAC). Do the following:

```console
$ helm install --name my-release stable/kubedb --set rbac.create=true
$ helm install --name my-release appscode/kubedb --set rbac.create=true
```
File renamed without changes.
10 changes: 6 additions & 4 deletions docs/setup/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ $ curl -fsSL https://raw.githubusercontent.com/kubedb/cli/0.8.0-beta.2/hack/depl

### Using Helm

KubeDB can be installed via [Helm](https://helm.sh/) using the [chart](https://github.com/kubedb/cli/tree/master/chart/stable/kubedb) included in this repository. To install the chart with the release name `my-release`:
KubeDB can be installed via [Helm](https://helm.sh/) using the [chart](https://github.com/kubedb/cli/tree/master/chart/kubedb) from [AppsCode Charts Repository](https://github.com/appscode/charts). To install the chart with the release name `my-release`:

```console
# Mac OSX amd64:
Expand All @@ -132,17 +132,19 @@ curl -fsSL -o onessl https://github.com/kubepack/onessl/releases/download/0.1.0/
&& sudo mv onessl /usr/local/bin/

# Kubernetes 1.8.x
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stable/kubedb --name my-release
$ helm install appscode/kubedb --name my-release

# Kubernetes 1.9.0 or later
$ helm repo add appscode https://charts.appscode.com/stable/
$ helm repo update
$ helm install stable/kubedb --name my-release \
$ helm install appscode/kubedb --name my-release \
--set apiserver.ca="$(onessl get kube-ca)" \
--set apiserver.enableAdmissionWebhook=true
```

To see the detailed configuration options, visit [here](https://github.com/kubedb/cli/tree/master/chart/stable/kubedb).
To see the detailed configuration options, visit [here](https://github.com/kubedb/cli/tree/master/chart/kubedb).

## Verify installation

Expand Down