Default installation always works - does not assume Service Catalog has been installed (fixes `no matches for kind "ServiceBinding"`)

This commit is contained in:
Dr Nic Williams 2018-11-19 09:26:55 +10:00
parent 74ac17453a
commit 5d720fe9a4
3 changed files with 5 additions and 5 deletions

View File

@ -17,11 +17,10 @@ helm upgrade --install show-me-secrets starkandwayne/show-me-secrets \
In the example above, it is assumed that your Service Catalog has a service class "cleardb" with a service plan "spark".
To run the app without a database service instnace/binding:
To run the app without a database service instance/binding:
```shell
helm upgrade --install show-me-secrets starkandwayne/show-me-secrets \
--set "database.service.class=null"
helm upgrade --install show-me-secrets starkandwayne/show-me-secrets
```
To view the app via port forwarding:

1
ci/release_notes.md Normal file
View File

@ -0,0 +1 @@
* Default installation always works - does not assume Service Catalog has been installed (fixes `no matches for kind "ServiceBinding"`)

View File

@ -6,8 +6,8 @@ replicaCount: 1
database:
service:
class: cleardb
plan: spark
class: ~
plan: ~
image:
repository: drnic/show-me-secrets