From 37fe217bcebb7f6a2ea3269dea7274049fb3aebb Mon Sep 17 00:00:00 2001 From: Dr Nic Williams Date: Fri, 16 Nov 2018 11:26:11 +1000 Subject: [PATCH] chart renamed --- Chart.yaml | 4 ++-- README.md | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index 2072634..e15d5d0 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 appVersion: "1.0" -description: Ruby application that consumes Service Catalog bindings -name: ruby-with-binding +description: Displays environment variables and /secrets folders +name: show-me-secrets version: 0.1.0 diff --git a/README.md b/README.md index dcfe643..a41381b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,14 @@ -# Ruby app that uses for Kubernetes Service Catalog +# Displays environment variables and /secrets folders ![show-me-secrets](docs/show-me-secrets-demo.png) To deploy the sample Ruby/Sinatra application with a service instance/binding from your Service Catalog: ```shell -helm upgrade --install show-me-secrets . \ +helm plugin install https://github.com/hypnoglow/helm-s3.git +helm repo add starkandwayne s3://helm.starkandwayne.com/charts + +helm upgrade --install show-me-secrets starkandwayne/show-me-secrets \ --set "database.service.class=cleardb,database.service.plan=spark" ``` @@ -14,7 +17,7 @@ In the example above, it is assumed that your Service Catalog has a service clas To run the app without a database service instnace/binding: ```shell -helm upgrade --install show-me-secrets . \ +helm upgrade --install show-me-secrets starkandwayne/show-me-secrets \ --set "database.service.class=null" ```