diff --git a/examples/roles/apache2/README.md b/examples/roles/apache2/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/examples/roles/apache2/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/examples/roles/apache2/defaults/main.yml b/examples/roles/apache2/defaults/main.yml new file mode 100644 index 0000000..b292d8c --- /dev/null +++ b/examples/roles/apache2/defaults/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# defaults file for apache2 diff --git a/examples/roles/apache2/handlers/main.yml b/examples/roles/apache2/handlers/main.yml new file mode 100644 index 0000000..c7b7ad9 --- /dev/null +++ b/examples/roles/apache2/handlers/main.yml @@ -0,0 +1,5 @@ +#SPDX-License-Identifier: MIT-0 +--- +# handlers file for apache2 +- name: restart apache2 + service: name=apache2 state=restarted diff --git a/examples/roles/apache2/meta/main.yml b/examples/roles/apache2/meta/main.yml new file mode 100644 index 0000000..36b9858 --- /dev/null +++ b/examples/roles/apache2/meta/main.yml @@ -0,0 +1,35 @@ +#SPDX-License-Identifier: MIT-0 +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/examples/roles/apache2/tasks/main.yml b/examples/roles/apache2/tasks/main.yml new file mode 100644 index 0000000..62258a3 --- /dev/null +++ b/examples/roles/apache2/tasks/main.yml @@ -0,0 +1,19 @@ +#SPDX-License-Identifier: MIT-0 +--- +# tasks file for apache2 +- name: install web components + apt: name={{item}} state=present update_cache=yes + with_items: + - apache2 + - libapache2-mod-wsgi-py3 + +- name: ensure mod_wsgi enabled + apache2_module: state=present name=wsgi + notify: restart apache2 + +- name: de-activate default apache site + file: path=/etc/apache2/sites-enabled/000-default.conf state=absent + notify: restart apache2 + +- name: ensure apache2 started + service: name=apache2 state=started enabled=yes diff --git a/examples/roles/apache2/tests/inventory b/examples/roles/apache2/tests/inventory new file mode 100644 index 0000000..03ca42f --- /dev/null +++ b/examples/roles/apache2/tests/inventory @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +localhost + diff --git a/examples/roles/apache2/tests/test.yml b/examples/roles/apache2/tests/test.yml new file mode 100644 index 0000000..2918a18 --- /dev/null +++ b/examples/roles/apache2/tests/test.yml @@ -0,0 +1,6 @@ +#SPDX-License-Identifier: MIT-0 +--- +- hosts: localhost + remote_user: root + roles: + - apache2 diff --git a/examples/roles/apache2/vars/main.yml b/examples/roles/apache2/vars/main.yml new file mode 100644 index 0000000..b79cb1f --- /dev/null +++ b/examples/roles/apache2/vars/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# vars file for apache2 diff --git a/examples/roles/demo_app/README.md b/examples/roles/demo_app/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/examples/roles/demo_app/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/examples/roles/demo_app/defaults/main.yml b/examples/roles/demo_app/defaults/main.yml new file mode 100644 index 0000000..3259567 --- /dev/null +++ b/examples/roles/demo_app/defaults/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# defaults file for demo_app diff --git a/examples/roles/demo_app/files/demo/app/demo.py b/examples/roles/demo_app/files/demo/app/demo.py new file mode 100644 index 0000000..f093790 --- /dev/null +++ b/examples/roles/demo_app/files/demo/app/demo.py @@ -0,0 +1,20 @@ +from flask import Flask +from flask_sqlalchemy import SQLAlchemy +import os, socket + +app = Flask(__name__) +app.config['SQLALCHEMY_DATABASE_URI'] = os.environ['DATABASE_URI'] +app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False +db = SQLAlchemy(app) +hostname = socket.gethostname() + +@app.route('/') +def index(): + return 'Hello, from sunny %s!\n' % hostname + +@app.route('/db') +def dbtest(): + return 'Database Connected from %s!\n' % hostname + +if __name__ == '__main__': + app.run() \ No newline at end of file diff --git a/examples/roles/demo_app/files/demo/app/demo.wsgi b/examples/roles/demo_app/files/demo/app/demo.wsgi new file mode 100644 index 0000000..0b81ee5 --- /dev/null +++ b/examples/roles/demo_app/files/demo/app/demo.wsgi @@ -0,0 +1,10 @@ +activate_this = '/var/www/demo/.venv/bin/activate_this.py' +exec(open(activate_this).read(), {'__file__': activate_this}) + +import os +os.environ['DATABASE_URI'] = 'mysql://demo:demo@db01/demo' + +import sys +sys.path.insert(0, '/var/www/demo') + +from demo import app as application \ No newline at end of file diff --git a/examples/roles/demo_app/files/demo/app/requirements.txt b/examples/roles/demo_app/files/demo/app/requirements.txt new file mode 100644 index 0000000..c8cc0ea --- /dev/null +++ b/examples/roles/demo_app/files/demo/app/requirements.txt @@ -0,0 +1,9 @@ +click==7.1.2 +Flask==1.1.4 +Flask-SQLAlchemy==2.5.1 +greenlet +itsdangerous==1.1.0 +Jinja2==2.11.3 +MarkupSafe==2.0.1 +SQLAlchemy==1.4.32 +Werkzeug==1.0.1 diff --git a/examples/roles/demo_app/files/demo/demo.conf b/examples/roles/demo_app/files/demo/demo.conf new file mode 100644 index 0000000..ac7b9e2 --- /dev/null +++ b/examples/roles/demo_app/files/demo/demo.conf @@ -0,0 +1,11 @@ + + WSGIDaemonProcess demo threads=5 + WSGIScriptAlias / /var/www/demo/demo.wsgi + + + WSGIProcessGroup demo + WSGIApplicationGroup %{GLOBAL} + Order deny,allow + Allow from all + + diff --git a/examples/roles/demo_app/handlers/main.yml b/examples/roles/demo_app/handlers/main.yml new file mode 100644 index 0000000..012a302 --- /dev/null +++ b/examples/roles/demo_app/handlers/main.yml @@ -0,0 +1,5 @@ +#SPDX-License-Identifier: MIT-0 +--- +# handlers file for demo_app +- name: restart apache2 + service: name=apache2 state=restarted diff --git a/examples/roles/demo_app/meta/main.yml b/examples/roles/demo_app/meta/main.yml new file mode 100644 index 0000000..36b9858 --- /dev/null +++ b/examples/roles/demo_app/meta/main.yml @@ -0,0 +1,35 @@ +#SPDX-License-Identifier: MIT-0 +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/examples/roles/demo_app/tasks/main.yml b/examples/roles/demo_app/tasks/main.yml new file mode 100644 index 0000000..5578a8d --- /dev/null +++ b/examples/roles/demo_app/tasks/main.yml @@ -0,0 +1,41 @@ +#SPDX-License-Identifier: MIT-0 +--- +# tasks file for demo_app +- name: install web components + apt: name={{item}} state=present update_cache=yes + with_items: + - python3-pip-whl + - python3-virtualenv + - python3-mysqldb + +- name: copy demo app source + copy: src=files/demo/app/ dest=/var/www/demo mode=0755 + notify: restart apache2 + +- name: change ownership of demo app + file: path=/var/www/demo owner=www-data group=www-data recurse=yes + notify: restart apache2 + +- name: copy apache virtual host config + copy: src=files/demo/demo.conf dest=/etc/apache2/sites-available mode=0755 + notify: restart apache2 + +- name: create virtualenv + command: python3 -m venv /var/www/demo/.venv + args: + creates: /var/www/demo/.venv/bin/activate + +- name: source activate virtualenv + shell: source /var/www/demo/.venv/bin/activate + args: + executable: /bin/bash + +- name: pip install upgrade pip + shell: /var/www/demo/.venv/bin/pip install --upgrade pip + +- name: pip install requirements + shell: /var/www/demo/.venv/bin/pip install -r /var/www/demo/requirements.txt + +- name: activate demo apache site + file: src=/etc/apache2/sites-available/demo.conf dest=/etc/apache2/sites-enabled/demo.conf state=link + notify: restart apache2 diff --git a/examples/roles/demo_app/tests/inventory b/examples/roles/demo_app/tests/inventory new file mode 100644 index 0000000..03ca42f --- /dev/null +++ b/examples/roles/demo_app/tests/inventory @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +localhost + diff --git a/examples/roles/demo_app/tests/test.yml b/examples/roles/demo_app/tests/test.yml new file mode 100644 index 0000000..e1a4943 --- /dev/null +++ b/examples/roles/demo_app/tests/test.yml @@ -0,0 +1,6 @@ +#SPDX-License-Identifier: MIT-0 +--- +- hosts: localhost + remote_user: root + roles: + - demo_app diff --git a/examples/roles/demo_app/vars/main.yml b/examples/roles/demo_app/vars/main.yml new file mode 100644 index 0000000..9fd5ea3 --- /dev/null +++ b/examples/roles/demo_app/vars/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# vars file for demo_app diff --git a/examples/roles/hosts b/examples/roles/hosts new file mode 100644 index 0000000..6f5d628 --- /dev/null +++ b/examples/roles/hosts @@ -0,0 +1,11 @@ +[all:vars] # Definir el intérprete de Python para todos los hosts +ansible_python_interpreter=/usr/bin/python3.12 + +[database] # Definir el grupo de bases de datos +192.168.11.20 + +[loadbalancer] # Definir el grupo de balanceadores de carga +192.168.11.30 + +[webserver] # Definir el grupo de servidores web +192.168.11.40 diff --git a/examples/roles/mysql/README.md b/examples/roles/mysql/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/examples/roles/mysql/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/examples/roles/mysql/defaults/main.yml b/examples/roles/mysql/defaults/main.yml new file mode 100644 index 0000000..978ee0c --- /dev/null +++ b/examples/roles/mysql/defaults/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# defaults file for mysql diff --git a/examples/roles/mysql/handlers/main.yml b/examples/roles/mysql/handlers/main.yml new file mode 100644 index 0000000..21e663b --- /dev/null +++ b/examples/roles/mysql/handlers/main.yml @@ -0,0 +1,5 @@ +#SPDX-License-Identifier: MIT-0 +--- +# handlers file for mysql +- name: restart mysql + service: name=mysql state=restarted diff --git a/examples/roles/mysql/meta/main.yml b/examples/roles/mysql/meta/main.yml new file mode 100644 index 0000000..36b9858 --- /dev/null +++ b/examples/roles/mysql/meta/main.yml @@ -0,0 +1,35 @@ +#SPDX-License-Identifier: MIT-0 +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/examples/roles/mysql/tasks/main.yml b/examples/roles/mysql/tasks/main.yml new file mode 100644 index 0000000..0225093 --- /dev/null +++ b/examples/roles/mysql/tasks/main.yml @@ -0,0 +1,26 @@ +#SPDX-License-Identifier: MIT-0 +--- +# tasks file for mysql +- name: install tools + apt: name={{item}} state=present update_cache=yes + with_items: + - python3-mysqldb + +- name: install mysql-server + apt: name=mysql-server state=present update_cache=yes + +- name: chmod cnf + command: chmod 777 /etc/mysql/my.cnf + +- name: ensure mysql listening on all ports + lineinfile: dest=/etc/mysql/my.cnf regexp=^bind-address line="bind-address = 0.0.0.0" + notify: restart mysql + +- name: ensure mysql started + service: name=mysql state=started enabled=yes + +- name: create demo database + mysql_db: name=demo state=present + +- name: create demo user + mysql_user: name=demo password=demo priv=demo.*:ALL host='%' state=present diff --git a/examples/roles/mysql/tests/inventory b/examples/roles/mysql/tests/inventory new file mode 100644 index 0000000..03ca42f --- /dev/null +++ b/examples/roles/mysql/tests/inventory @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +localhost + diff --git a/examples/roles/mysql/tests/test.yml b/examples/roles/mysql/tests/test.yml new file mode 100644 index 0000000..64ef38d --- /dev/null +++ b/examples/roles/mysql/tests/test.yml @@ -0,0 +1,6 @@ +#SPDX-License-Identifier: MIT-0 +--- +- hosts: localhost + remote_user: root + roles: + - mysql diff --git a/examples/roles/mysql/vars/main.yml b/examples/roles/mysql/vars/main.yml new file mode 100644 index 0000000..21a08f8 --- /dev/null +++ b/examples/roles/mysql/vars/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# vars file for mysql diff --git a/examples/roles/nginx/README.md b/examples/roles/nginx/README.md new file mode 100644 index 0000000..225dd44 --- /dev/null +++ b/examples/roles/nginx/README.md @@ -0,0 +1,38 @@ +Role Name +========= + +A brief description of the role goes here. + +Requirements +------------ + +Any pre-requisites that may not be covered by Ansible itself or the role should be mentioned here. For instance, if the role uses the EC2 module, it may be a good idea to mention in this section that the boto package is required. + +Role Variables +-------------- + +A description of the settable variables for this role should go here, including any variables that are in defaults/main.yml, vars/main.yml, and any variables that can/should be set via parameters to the role. Any variables that are read from other roles and/or the global scope (ie. hostvars, group vars, etc.) should be mentioned here as well. + +Dependencies +------------ + +A list of other roles hosted on Galaxy should go here, plus any details in regards to parameters that may need to be set for other roles, or variables that are used from other roles. + +Example Playbook +---------------- + +Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too: + + - hosts: servers + roles: + - { role: username.rolename, x: 42 } + +License +------- + +BSD + +Author Information +------------------ + +An optional section for the role authors to include contact information, or a website (HTML is not allowed). diff --git a/examples/roles/nginx/defaults/main.yml b/examples/roles/nginx/defaults/main.yml new file mode 100644 index 0000000..940142c --- /dev/null +++ b/examples/roles/nginx/defaults/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# defaults file for nginx diff --git a/examples/roles/nginx/handlers/main.yml b/examples/roles/nginx/handlers/main.yml new file mode 100644 index 0000000..f0b1c2e --- /dev/null +++ b/examples/roles/nginx/handlers/main.yml @@ -0,0 +1,5 @@ +#SPDX-License-Identifier: MIT-0 +# handlers file for nginx +--- +- name: restart nginx + service: name=nginx state=restarted diff --git a/examples/roles/nginx/meta/main.yml b/examples/roles/nginx/meta/main.yml new file mode 100644 index 0000000..36b9858 --- /dev/null +++ b/examples/roles/nginx/meta/main.yml @@ -0,0 +1,35 @@ +#SPDX-License-Identifier: MIT-0 +galaxy_info: + author: your name + description: your role description + company: your company (optional) + + # If the issue tracker for your role is not on github, uncomment the + # next line and provide a value + # issue_tracker_url: http://example.com/issue/tracker + + # Choose a valid license ID from https://spdx.org - some suggested licenses: + # - BSD-3-Clause (default) + # - MIT + # - GPL-2.0-or-later + # - GPL-3.0-only + # - Apache-2.0 + # - CC-BY-4.0 + license: license (GPL-2.0-or-later, MIT, etc) + + min_ansible_version: 2.1 + + # If this a Container Enabled role, provide the minimum Ansible Container version. + # min_ansible_container_version: + + galaxy_tags: [] + # List tags for your role here, one per line. A tag is a keyword that describes + # and categorizes the role. Users find roles by searching for tags. Be sure to + # remove the '[]' above, if you add tags to this list. + # + # NOTE: A tag is limited to a single word comprised of alphanumeric characters. + # Maximum 20 tags per role. + +dependencies: [] + # List your role dependencies here, one per line. Be sure to remove the '[]' above, + # if you add dependencies to this list. diff --git a/examples/roles/nginx/tasks/main.yml b/examples/roles/nginx/tasks/main.yml new file mode 100644 index 0000000..be21d8c --- /dev/null +++ b/examples/roles/nginx/tasks/main.yml @@ -0,0 +1,20 @@ +#SPDX-License-Identifier: MIT-0 +# tasks file for nginx +--- +- name: install nginx + apt: name=nginx state=present update_cache=yes + +- name: configure nginx site + template: src=nginx.conf.j2 dest=/etc/nginx/sites-available/demo mode=0644 + notify: restart nginx + +- name: de-activate default nginx site + file: path=/etc/nginx/sites-enabled/default state=absent + notify: restart nginx + +- name: activate demo nginx site + file: src=/etc/nginx/sites-available/demo dest=/etc/nginx/sites-enabled/demo state=link + notify: restart nginx + +- name: ensure nginx started + service: name=nginx state=started enabled=yes diff --git a/examples/roles/nginx/templates/nginx.conf.j2 b/examples/roles/nginx/templates/nginx.conf.j2 new file mode 100644 index 0000000..4b477b6 --- /dev/null +++ b/examples/roles/nginx/templates/nginx.conf.j2 @@ -0,0 +1,13 @@ +upstream demo { +{% for server in groups.webserver %} + server {{ server }}; +{% endfor %} +} + +server { + listen 80; + + location / { + proxy_pass http://demo; + } +} diff --git a/examples/roles/nginx/tests/inventory b/examples/roles/nginx/tests/inventory new file mode 100644 index 0000000..03ca42f --- /dev/null +++ b/examples/roles/nginx/tests/inventory @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +localhost + diff --git a/examples/roles/nginx/tests/test.yml b/examples/roles/nginx/tests/test.yml new file mode 100644 index 0000000..410fda6 --- /dev/null +++ b/examples/roles/nginx/tests/test.yml @@ -0,0 +1,6 @@ +#SPDX-License-Identifier: MIT-0 +--- +- hosts: localhost + remote_user: root + roles: + - nginx diff --git a/examples/roles/nginx/vars/main.yml b/examples/roles/nginx/vars/main.yml new file mode 100644 index 0000000..78c85e6 --- /dev/null +++ b/examples/roles/nginx/vars/main.yml @@ -0,0 +1,3 @@ +#SPDX-License-Identifier: MIT-0 +--- +# vars file for nginx diff --git a/examples/roles/site.yml b/examples/roles/site.yml new file mode 100644 index 0000000..74d5be7 --- /dev/null +++ b/examples/roles/site.yml @@ -0,0 +1,16 @@ +--- +- hosts: database + become: true + roles: + - mysql + +- hosts: loadbalancer + become: true + roles: + - nginx + +- hosts: webserver + become: true + roles: + - apache2 + - demo_app