summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master_facts/tasks
diff options
context:
space:
mode:
authorDevan Goodwin <dgoodwin@redhat.com>2016-03-30 09:31:11 -0300
committerDevan Goodwin <dgoodwin@redhat.com>2016-04-01 13:33:21 -0300
commit6003856b95031aa8e0c31977e9485ff3d842810e (patch)
treeb53e63ab1226dcf62a0422ee989fcfe30427a116 /roles/openshift_master_facts/tasks
parent89db887bd536156421fbc701c5d1b46656070347 (diff)
downloadopenshift-6003856b95031aa8e0c31977e9485ff3d842810e.tar.gz
openshift-6003856b95031aa8e0c31977e9485ff3d842810e.tar.bz2
openshift-6003856b95031aa8e0c31977e9485ff3d842810e.tar.xz
openshift-6003856b95031aa8e0c31977e9485ff3d842810e.zip
Add support for configuring oauth templates.
Allow users who wish to deploy configs with ansible to define templates for oauth screens, and control the alwaysShowProviderSelection setting. There are currently three supported oauth templates, and we have a pre-existing 'oauth_template' variable, but it is assumed to mean you are controlling the 'login' screen, and this is the only one you can configure. To work around this, supporting all current and future templates, introduce a pluralized variable 'oauth_templates', which contains a JSON dict allowing the admin to control any template they wish. If both new and old variables are defined, the old one is ignored. (and can be considered deprecated) Internally the old value will be converted to the new dict, so the template just references one value. Example: openshift_master_oauth_always_show_provider_selection=true openshift_master_oauth_templates={"providerSelection": "provider-selection.html", "error": "oauth-error.html"} Yeilds: oauthConfig: alwaysShowProviderSelection: true templates: error: oauth-error.html providerSelection: provider-selection.html
Diffstat (limited to 'roles/openshift_master_facts/tasks')
-rw-r--r--roles/openshift_master_facts/tasks/main.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/roles/openshift_master_facts/tasks/main.yml b/roles/openshift_master_facts/tasks/main.yml
index c54f11c1a..f43b8c59d 100644
--- a/roles/openshift_master_facts/tasks/main.yml
+++ b/roles/openshift_master_facts/tasks/main.yml
@@ -69,3 +69,6 @@
admission_plugin_config: "{{openshift_master_admission_plugin_config | default(None) }}"
kube_admission_plugin_order: "{{openshift_master_kube_admission_plugin_order | default(None) }}"
kube_admission_plugin_config: "{{openshift_master_kube_admission_plugin_config | default(None) }}"
+ oauth_template: "{{ openshift_master_oauth_template | default(None) }}" # deprecated in origin 1.2 / OSE 3.2
+ oauth_templates: "{{ openshift_master_oauth_templates | default(None) }}"
+ oauth_always_show_provider_selection: "{{ openshift_master_oauth_always_show_provider_selection | default(None) }}"