From 5d720fe9a4dc551497ae07a51ad2df1e4f351849 Mon Sep 17 00:00:00 2001 From: Dr Nic Williams Date: Mon, 19 Nov 2018 09:26:55 +1000 Subject: [PATCH] Default installation always works - does not assume Service Catalog has been installed (fixes `no matches for kind "ServiceBinding"`) --- README.md | 5 ++--- ci/release_notes.md | 1 + values.yaml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 ci/release_notes.md diff --git a/README.md b/README.md index ab18174..308a4b6 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/ci/release_notes.md b/ci/release_notes.md new file mode 100644 index 0000000..c4a401b --- /dev/null +++ b/ci/release_notes.md @@ -0,0 +1 @@ +* Default installation always works - does not assume Service Catalog has been installed (fixes `no matches for kind "ServiceBinding"`) diff --git a/values.yaml b/values.yaml index 1c74fc6..aa915d2 100644 --- a/values.yaml +++ b/values.yaml @@ -6,8 +6,8 @@ replicaCount: 1 database: service: - class: cleardb - plan: spark + class: ~ + plan: ~ image: repository: drnic/show-me-secrets