diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2017-04-02 08:05:51 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2017-04-02 08:05:51 +0200 |
commit | 035ab0212eede4c7ab894fa78b14da0fa6056ef4 (patch) | |
tree | 32e7d8c35b830b89bdb708013a67f343c71c5e57 /setup/projects/katrin/vars/pods.yml | |
parent | 1744778d4ffb5183020a5196c7ea020b18e1436a (diff) | |
download | ands-035ab0212eede4c7ab894fa78b14da0fa6056ef4.tar.gz ands-035ab0212eede4c7ab894fa78b14da0fa6056ef4.tar.bz2 ands-035ab0212eede4c7ab894fa78b14da0fa6056ef4.tar.xz ands-035ab0212eede4c7ab894fa78b14da0fa6056ef4.zip |
Support pod variants, i.e. one of the specified pods will be actually configured depending on the inventory/group parameters
Diffstat (limited to 'setup/projects/katrin/vars/pods.yml')
-rw-r--r-- | setup/projects/katrin/vars/pods.yml | 42 |
1 files changed, 31 insertions, 11 deletions
diff --git a/setup/projects/katrin/vars/pods.yml b/setup/projects/katrin/vars/pods.yml index 3bfcfd7..1334242 100644 --- a/setup/projects/katrin/vars/pods.yml +++ b/setup/projects/katrin/vars/pods.yml @@ -1,17 +1,37 @@ # First port is exposed + pods: kaas: - service: { host: "{{ katrin_node }}", ports: [ 80/8080, 443/8043 ] } - sched: { replicas: 1, selector: { master: 1 } } - selector: { master: 1 } - images: - - image: "centos/httpd-24-centos7" - mappings: - - { name: "etc", path: "apache2-kaas", mount: "/etc/httpd24" } - - { name: "www", path: "kaas", mount: "/opt/rh/httpd24/root/var/www/html" } - - { name: "log", path: "apache2-kaas", mount: "/var/log/httpd24" } - probes: - - { port: 8080, path: '/index.html' } + variant: "{{ ands_prefer_docker | default(false) | ternary('docker', 'centos') }}" + centos: + service: { host: "{{ katrin_node }}", ports: [ 80/8080, 443/8043 ] } + sched: { replicas: 1, selector: { master: 1 } } + selector: { master: 1 } + images: + - image: "centos/httpd-24-centos7" + mappings: + - { name: "etc", path: "apache2-kaas-centos", mount: "/etc/httpd" } + - { name: "www", path: "kaas", mount: "/opt/rh/httpd24/root/var/www/html" } + - { name: "log", path: "apache2-kaas", mount: "/var/log/httpd24" } + probes: + - { port: 8080, path: '/index.html' } + docker: + service: { host: "{{ katrin_node }}", ports: [ 80/8080, 443/8043 ] } + sched: { replicas: 1, selector: { master: 1 } } + selector: { master: 1 } + images: + - image: "httpd:2.2" + mappings: + - { name: "etc", path: "apache2-kaas-docker", mount: "/usr/local/apache2/conf" } + - { name: "www", path: "kaas", mount: "/usr/local/apache2/htdocs" } + - { name: "log", path: "apache2-kaas", mount: "/usr/local/apache2/logs" } + probes: + - { port: 8080, path: '/index.html' } + +#pods: +# kaas: "{{ kaas_project_config.pod_variants[ ands_prefer_docker | default(false) | ternary(1, 0) ] }}" + + #oc: # - template: "[0-3]*" |