Skip to content

Commit

Permalink
Merge pull request #248 from keel-hq/feature/dep-fixes
Browse files Browse the repository at this point in the history
chart updated
  • Loading branch information
rusenask authored Aug 6, 2018
2 parents 765093f + b5776b0 commit ce61b44
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
4 changes: 3 additions & 1 deletion chart/keel/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ spec:
{{- end }}
env:
- name: NAMESPACE
value: {{ .Release.Namespace }}
valueFrom:
fieldRef:
fieldPath: metadata.namespace
{{- if .Values.googleApplicationCredentials }}
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /google/google-application-credentials.json
Expand Down
2 changes: 1 addition & 1 deletion chart/keel/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

image:
repository: keelhq/keel
# tag:
tag: 0.9.5
pullPolicy: IfNotPresent

# Enable insecure registries
Expand Down
28 changes: 28 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,34 @@ Support Keel's development by:
* Star this repository
* [Follow on Twitter](https://twitter.com/keel_hq)

### Lightning quick start

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):

```bash
helm upgrade --install keel --namespace=kube-system ./chart/keel/ --set helmProvider.enabled="true" --set rbac.enabled="true"
```

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"
```

That's it, see [Configuration](https://github.com/keel-hq/keel#configuration) section now.

### Quick Start

<p align="center">
Expand Down

0 comments on commit ce61b44

Please sign in to comment.