Add ability to authenticate an endpoint

Write an example for basic auth
This commit is contained in:
Giancarlo Rubio
2017-05-05 19:04:20 +02:00
parent c6c67bb450
commit 64c959e018
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
apiVersion: v1
kind: Secret
metadata:
name: basic-auth
data:
password: dG9vcg== # toor
user: YWRtaW4= # admin
type: Opaque