100 lines
2.9 KiB
YAML
100 lines
2.9 KiB
YAML
- name: provision CoreOS Cincinnati backend
|
|
hosts: os_control:os_control_stg
|
|
user: root
|
|
gather_facts: False
|
|
|
|
vars_files:
|
|
- /srv/web/infra/ansible/vars/global.yml
|
|
- "/srv/private/ansible/vars.yml"
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
- /srv/web/infra/ansible/roles/openshift-apps/coreos-cincinnati/vars/{{ env }}.yml
|
|
|
|
pre_tasks:
|
|
- include_vars: dir=/srv/web/infra/ansible/vars/all/ ignore_files=README
|
|
|
|
roles:
|
|
- role: openshift/project
|
|
app: coreos-cincinnati
|
|
description: Fedora CoreOS Cincinnati backend
|
|
appowners:
|
|
- jlebon
|
|
- lucab
|
|
- dustymabe
|
|
egress_policy_template: "{{ roles_path }}/openshift-apps/coreos-cincinnati/templates/egresspolicy.yml"
|
|
|
|
- role: openshift/imagestream
|
|
app: coreos-cincinnati
|
|
imagename: fedora-coreos-cincinnati
|
|
|
|
- role: openshift/object
|
|
app: coreos-cincinnati
|
|
template: buildconfig-stub.yml
|
|
objectname: buildconfig-stub.yml
|
|
|
|
- role: openshift/start-build
|
|
app: coreos-cincinnati
|
|
buildname: coreos-cincinnati
|
|
tags: [ never, build ]
|
|
|
|
- role: openshift/object
|
|
app: coreos-cincinnati
|
|
file: config-stub.yml
|
|
objectname: config-stub.yml
|
|
|
|
- role: openshift/object
|
|
app: coreos-cincinnati
|
|
template: deploymentconfig.yml
|
|
objectname: deploymentconfig.yml
|
|
|
|
- role: openshift/rollout
|
|
app: coreos-cincinnati
|
|
dcname: coreos-cincinnati
|
|
tags: [ never, rollout ]
|
|
|
|
- role: openshift/object
|
|
app: coreos-cincinnati
|
|
file: service.yml
|
|
objectname: service.yml
|
|
|
|
- role: openshift/object
|
|
app: coreos-cincinnati
|
|
template: servicemonitor.yml
|
|
objectname: servicemonitor.yml
|
|
|
|
- role: openshift/route
|
|
app: coreos-cincinnati
|
|
routename: coreos-updates
|
|
host: "updates.coreos{{ env_suffix }}.fedoraproject.org"
|
|
serviceport: coreos-cincinnati-updates
|
|
servicename: coreos-cincinnati
|
|
|
|
- role: openshift/route
|
|
app: coreos-cincinnati
|
|
routename: coreos-updates-status
|
|
host: "status.updates.coreos{{ env_suffix }}.fedoraproject.org"
|
|
serviceport: coreos-cincinnati-updates-status
|
|
servicename: coreos-cincinnati
|
|
|
|
- role: openshift/route
|
|
app: coreos-cincinnati
|
|
routename: coreos-updates-raw
|
|
host: "raw-updates.coreos{{ env_suffix }}.fedoraproject.org"
|
|
serviceport: coreos-cincinnati-raw-updates
|
|
servicename: coreos-cincinnati
|
|
|
|
- role: openshift/route
|
|
app: coreos-cincinnati
|
|
routename: coreos-updates-raw-status
|
|
host: "status.raw-updates.coreos{{ env_suffix }}.fedoraproject.org"
|
|
serviceport: coreos-cincinnati-raw-updates-status
|
|
servicename: coreos-cincinnati
|
|
|
|
###############################################
|
|
# actions to delete the project from OpenShift
|
|
###############################################
|
|
# to run: sudo rbac-playbook -l os_masters_stg[0] -t delete openshift-apps/coreos-cincinnati.yml
|
|
- role: openshift/object-delete
|
|
app: coreos-cincinnati
|
|
objecttype: project
|
|
objectname: coreos-cincinnati
|
|
tags: [ never, delete ]
|