diff options
| author | Jason DeTiberus <detiber@gmail.com> | 2016-04-26 10:03:05 -0400 | 
|---|---|---|
| committer | Jason DeTiberus <detiber@gmail.com> | 2016-04-26 10:03:05 -0400 | 
| commit | 44407f04615073f1ffde4bf31f6a2a5894c7bafc (patch) | |
| tree | 19281b0063447251e82fa14ae65f3f14d0dff603 /roles/openshift_master/templates | |
| parent | 7c6d0d70e2371bd9abb6feb4e6c098ae4ddb5143 (diff) | |
| parent | 2ed23a9326056a9d23b153f0ddb9ae9956f3d75b (diff) | |
| download | openshift-44407f04615073f1ffde4bf31f6a2a5894c7bafc.tar.gz openshift-44407f04615073f1ffde4bf31f6a2a5894c7bafc.tar.bz2 openshift-44407f04615073f1ffde4bf31f6a2a5894c7bafc.tar.xz openshift-44407f04615073f1ffde4bf31f6a2a5894c7bafc.zip  | |
Merge pull request #1726 from detiber/htpasswd_users
Add support for setting identity provider custom values
Diffstat (limited to 'roles/openshift_master/templates')
| -rw-r--r-- | roles/openshift_master/templates/htpasswd.j2 | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/openshift_master/templates/htpasswd.j2 b/roles/openshift_master/templates/htpasswd.j2 new file mode 100644 index 000000000..ba2c02e20 --- /dev/null +++ b/roles/openshift_master/templates/htpasswd.j2 @@ -0,0 +1,5 @@ +{% if 'htpasswd_users' in openshift.master %} +{%   for user,pass in openshift.master.htpasswd_users.iteritems() %} +{{     user ~ ':' ~ pass }} +{%   endfor %} +{% endif %}  | 
