taskotron staging: prepare for rebuild to F24
This commit is contained in:
parent
ea4ed40076
commit
3b113c0273
6 changed files with 10 additions and 10 deletions
|
@ -38,7 +38,7 @@ taskotron_fas_user: taskotron
|
|||
taskotron_fas_password: ''
|
||||
|
||||
execdb_external_url: https://taskotron.stg.fedoraproject.org/execdb/
|
||||
resultsdb_server: http://resultsdb-stg01.qa.fedoraproject.org/resultsdb_api/api/v1.0/
|
||||
resultsdb_server: http://resultsdb-stg01.qa.fedoraproject.org/resultsdb_api/api/v2.0/
|
||||
# this should be proxy01.stg through /etc/hosts
|
||||
bodhi_server: http://bodhi.fedoraproject.org/
|
||||
kojihub_url: http://koji.fedoraproject.org/kojihub
|
||||
|
|
|
@ -17,8 +17,8 @@ eth0_nm: 255.255.255.128
|
|||
# install
|
||||
############################################################
|
||||
|
||||
ks_url: http://10.5.126.23/repo/rhel/ks/kvm-fedora-23
|
||||
ks_repo: http://10.5.126.23/pub/fedora/linux/releases/23/Server/x86_64/os/
|
||||
ks_url: http://10.5.126.23/repo/rhel/ks/kvm-fedora-24
|
||||
ks_repo: http://10.5.126.23/pub/fedora/linux/releases/24/Server/x86_64/os/
|
||||
|
||||
volgroup: /dev/vg_guests
|
||||
vmhost: virthost-comm04.qa.fedoraproject.org
|
||||
|
|
|
@ -17,8 +17,8 @@ ansible_ifcfg_blacklist: true
|
|||
# install
|
||||
############################################################
|
||||
|
||||
ks_url: http://10.5.126.23/repo/rhel/ks/kvm-fedora-23-taskotron-master
|
||||
ks_repo: http://10.5.126.23/pub/fedora/linux/releases/23/Server/x86_64/os/
|
||||
ks_url: http://10.5.126.23/repo/rhel/ks/kvm-fedora-24-taskotron-master
|
||||
ks_repo: http://10.5.126.23/pub/fedora/linux/releases/24/Server/x86_64/os/
|
||||
volgroup: /dev/vg_guests
|
||||
vmhost: virthost-comm04.qa.fedoraproject.org
|
||||
datacenter: phx2
|
||||
|
@ -30,7 +30,7 @@ fas_client_groups: sysadmin-qa,sysadmin-main
|
|||
# virtual machine
|
||||
############################################################
|
||||
|
||||
lvm_size: 55000
|
||||
lvm_size: 95000
|
||||
mem_size: 4096
|
||||
num_cpus: 4
|
||||
|
||||
|
|
|
@ -43,11 +43,11 @@
|
|||
|
||||
- name: ensure buildmaster user can use home directory (old)
|
||||
file: path="{{ buildmaster_home }}" state=directory owner=buildmaster group=buildmaster mode=0775 setype=user_home_t
|
||||
when: deployment_type == 'prod' or deployment_type == 'stg' or deployment_type == 'local'
|
||||
when: deployment_type == 'prod' or deployment_type == 'local'
|
||||
|
||||
- name: ensure buildmaster user can use home directory (new)
|
||||
file: path="{{ buildmaster_home }}" state=directory owner=buildmaster group=buildmaster mode=0775
|
||||
when: deployment_type in ['dev']
|
||||
when: deployment_type in ['dev', 'stg']
|
||||
|
||||
- name: allow httpd tcp connections with selinux
|
||||
seboolean: name=httpd_can_network_connect state=true persistent=yes
|
||||
|
|
|
@ -55,7 +55,7 @@
|
|||
- name: set the selinux fcontext type for the buildslave dir to var_lib_t
|
||||
command: semanage fcontext -a -t var_lib_t "{{ item.dir }}(/.*)?"
|
||||
with_items: "{{ slaves }}"
|
||||
when: slaves is defined and deployment_type == 'dev'
|
||||
when: slaves is defined and deployment_type in ['dev', 'stg']
|
||||
|
||||
- name: add buildslave users
|
||||
user: name={{ item.user }} group={{ slaves_group }} groups=testcloud,taskotron home={{ item.home }}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# while you can use this as a template, we recommend that you use the blockerbugs
|
||||
# cli to generate a config file
|
||||
{% if deployment_type in ['dev'] %}
|
||||
{% if deployment_type in ['dev', 'stg'] %}
|
||||
RDB_URL = 'http://127.0.0.1/{{ resultsdb_endpoint }}/api/v2.0'
|
||||
{% else %}
|
||||
RDB_URL = 'http://127.0.0.1/{{ resultsdb_endpoint }}/api/v1.0'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue