Merge pull request #312 from keel-hq/update-chart-readme

update readmes with new keel helm repo
pull/316/head
Rimas Mocevicius 2018-11-23 15:24:34 +00:00 committed by GitHub
commit ce50c98dde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
apiVersion: v1
name: keel
description: Open source, tool for automating Kubernetes deployment updates. Keel is stateless, robust and lightweight.
version: 0.7.3
version: 0.7.4
# Note that we use appVersion to get images tag, so make sure this is correct.
appVersion: 0.12.0
keywords:

View File

@ -27,7 +27,7 @@ Keel provides several key features:
Docker image _polling_, _Kubernetes provider_ and _Helm provider_ support are set by default, then Kubernetes _deployments_ can be upgraded when new Docker image is available:
```console
$ helm upgrade --install keel --namespace keel keel/
$ helm upgrade --install keel --namespace keel keel-charts/keel
```
### Setting up Helm release to be automatically updated by Keel
@ -117,6 +117,6 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm
Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example,
```console
$ helm install --name keel --namespace keel -f values.yaml keel/
$ helm install --name keel --namespace keel -f values.yaml keel-charts/keel
```
> **Tip**: You can use the default [values.yaml](values.yaml)

View File

@ -59,23 +59,23 @@ Prerequisites:
* [Helm](https://docs.helm.sh/using_helm/#installing-helm)
* Kubernetes
Clone this repo (you will need the chart):
```
git clone https://github.com/keel-hq/keel.git && cd keel
```
Install through Helm (with Helm provider enabled):
You need to add this Chart repo to Helm:
```bash
helm upgrade --install keel --namespace=kube-system ./chart/keel/ --set helmProvider.enabled="true" --set rbac.enabled="true"
helm repo add keel-charts https://charts.keel.sh
helm repo update
```
Install through Helm (with Helm provider enabled by default):
```bash
helm upgrade --install keel --namespace=kube-system keel-charts/keel
```
If you work mostly with regular Kubernetes manifests, you can install Keel without Helm provider support:
```bash
helm upgrade --install keel --namespace=keel ./chart/keel/ --set helmProvider.enabled="false" --set rbac.enabled="true"
helm upgrade --install keel --namespace=keel keel-charts/keel --set helmProvider.enabled="false"
```
That's it, see [Configuration](https://github.com/keel-hq/keel#configuration) section now.