Make auth options configurable
Change-Id: I2a91397f6182a32c4ec905947fe316aa5c383369
diff --git a/README.rst b/README.rst
index 01178fe..b0b8e7d 100644
--- a/README.rst
+++ b/README.rst
@@ -378,6 +378,36 @@
version: v1.2.4
+Enable basic, token and http authentication, disable ssl auth, create some
+static users:
+
+.. code-block:: yaml
+
+ kubernetes:
+ master:
+ auth:
+ basic:
+ enabled: true
+ user:
+ jdoe:
+ password: dummy
+ groups:
+ - system:admin
+ http:
+ enabled: true
+ header:
+ user: X-Remote-User
+ group: X-Remote-Group
+ ssl:
+ enabled: false
+ token:
+ enabled: true
+ user:
+ jdoe:
+ token: dummytoken
+ groups:
+ - system:admin
+
Kubernetes with OpenContrail network plugin
------------------------------------------------