You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by GitBox <gi...@apache.org> on 2019/01/15 18:01:21 UTC

[incubator-openwhisk-deploy-kube] Diff for: [GitHub] csantanapr merged pull request #410: Update sample yaml snippet for external providers db

diff --git a/docs/configurationChoices.md b/docs/configurationChoices.md
index 9a49947..e6de1b7 100644
--- a/docs/configurationChoices.md
+++ b/docs/configurationChoices.md
@@ -42,18 +42,16 @@ user action containers created by the DockerContainerFactory are not configured
 themselves be able to invoke Kubernetes services). To work around this you must do one
 of the following three alternatives:
 1. Deploy a CouchDB instance external to your Kubernetes cluster and configure the event
-provider(s) to use it by adding stanzas like the following to your `mycluster.yaml`:
+providers to use it by adding a stanza like the following to your `mycluster.yaml`:
 ```yaml
 providers:
-  alarm:
-    db:
-      external: true
-      prefix: "alm"
-      host: "0.0.0.0"
-      port: 5984
-      protocol: "http"
-      username: "admin"
-      password: "secret"
+  db:
+    external: true
+    host: "0.0.0.0"
+    port: 5984
+    protocol: "http"
+    username: "admin"
+    password: "secret"
 ```
 2. Configure the DNS nameservers for the user containers created by DockerContainerFactory to
 use Kubernetes's DNS service.  For example, if your cluster uses kube-dns, then first


With regards,
Apache Git Services