diff options
author | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-06-11 13:23:07 -0400 |
---|---|---|
committer | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-06-11 13:23:07 -0400 |
commit | 42806b6745c747843b71eaf08b62aeee5e450ab1 (patch) | |
tree | 3e1f882f5bc7fe419f13a134a71927cb6484fa86 /roles/openshift_master/vars | |
parent | b170dd1d5d3b3ff87795a64b77c312c79623444c (diff) | |
parent | 34278f136fb3471ecaa59f42033f00f76c390647 (diff) | |
download | openshift-42806b6745c747843b71eaf08b62aeee5e450ab1.tar.gz openshift-42806b6745c747843b71eaf08b62aeee5e450ab1.tar.bz2 openshift-42806b6745c747843b71eaf08b62aeee5e450ab1.tar.xz openshift-42806b6745c747843b71eaf08b62aeee5e450ab1.zip |
Merge pull request #248 from detiber/configTemplates
Config templates
Diffstat (limited to 'roles/openshift_master/vars')
-rw-r--r-- | roles/openshift_master/vars/main.yml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/roles/openshift_master/vars/main.yml b/roles/openshift_master/vars/main.yml index c52d957ac..f6f69966a 100644 --- a/roles/openshift_master/vars/main.yml +++ b/roles/openshift_master/vars/main.yml @@ -1,5 +1,10 @@ --- -openshift_master_config: /etc/openshift/master.yaml -openshift_master_ca_dir: "{{ openshift_cert_dir }}/ca" -openshift_master_ca_cert: "{{ openshift_master_ca_dir }}/cert.crt" -openshift_master_ca_key: "{{ openshift_master_ca_dir }}/key.key" +openshift_master_config_dir: /etc/openshift/master +openshift_master_config_file: "{{ openshift_master_config_dir }}/master-config.yaml" +openshift_master_scheduler_conf: "{{ openshift_master_config_dir }}/scheduler.json" +openshift_master_policy: "{{ openshift_master_config_dir }}/policy.json" + +openshift_master_valid_grant_methods: +- auto +- prompt +- deny |