Added roles
This commit is contained in:
38
examples/roles/apache2/README.md
Normal file
38
examples/roles/apache2/README.md
Normal file
@@ -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).
|
||||
3
examples/roles/apache2/defaults/main.yml
Normal file
3
examples/roles/apache2/defaults/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# defaults file for apache2
|
||||
5
examples/roles/apache2/handlers/main.yml
Normal file
5
examples/roles/apache2/handlers/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# handlers file for apache2
|
||||
- name: restart apache2
|
||||
service: name=apache2 state=restarted
|
||||
35
examples/roles/apache2/meta/main.yml
Normal file
35
examples/roles/apache2/meta/main.yml
Normal file
@@ -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.
|
||||
19
examples/roles/apache2/tasks/main.yml
Normal file
19
examples/roles/apache2/tasks/main.yml
Normal file
@@ -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
|
||||
3
examples/roles/apache2/tests/inventory
Normal file
3
examples/roles/apache2/tests/inventory
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
localhost
|
||||
|
||||
6
examples/roles/apache2/tests/test.yml
Normal file
6
examples/roles/apache2/tests/test.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
roles:
|
||||
- apache2
|
||||
3
examples/roles/apache2/vars/main.yml
Normal file
3
examples/roles/apache2/vars/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# vars file for apache2
|
||||
38
examples/roles/demo_app/README.md
Normal file
38
examples/roles/demo_app/README.md
Normal file
@@ -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).
|
||||
3
examples/roles/demo_app/defaults/main.yml
Normal file
3
examples/roles/demo_app/defaults/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# defaults file for demo_app
|
||||
20
examples/roles/demo_app/files/demo/app/demo.py
Normal file
20
examples/roles/demo_app/files/demo/app/demo.py
Normal file
@@ -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()
|
||||
10
examples/roles/demo_app/files/demo/app/demo.wsgi
Normal file
10
examples/roles/demo_app/files/demo/app/demo.wsgi
Normal file
@@ -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
|
||||
9
examples/roles/demo_app/files/demo/app/requirements.txt
Normal file
9
examples/roles/demo_app/files/demo/app/requirements.txt
Normal file
@@ -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
|
||||
11
examples/roles/demo_app/files/demo/demo.conf
Normal file
11
examples/roles/demo_app/files/demo/demo.conf
Normal file
@@ -0,0 +1,11 @@
|
||||
<VirtualHost *>
|
||||
WSGIDaemonProcess demo threads=5
|
||||
WSGIScriptAlias / /var/www/demo/demo.wsgi
|
||||
|
||||
<Directory /var/www/demo>
|
||||
WSGIProcessGroup demo
|
||||
WSGIApplicationGroup %{GLOBAL}
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
</Directory>
|
||||
</VirtualHost>
|
||||
5
examples/roles/demo_app/handlers/main.yml
Normal file
5
examples/roles/demo_app/handlers/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# handlers file for demo_app
|
||||
- name: restart apache2
|
||||
service: name=apache2 state=restarted
|
||||
35
examples/roles/demo_app/meta/main.yml
Normal file
35
examples/roles/demo_app/meta/main.yml
Normal file
@@ -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.
|
||||
41
examples/roles/demo_app/tasks/main.yml
Normal file
41
examples/roles/demo_app/tasks/main.yml
Normal file
@@ -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
|
||||
3
examples/roles/demo_app/tests/inventory
Normal file
3
examples/roles/demo_app/tests/inventory
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
localhost
|
||||
|
||||
6
examples/roles/demo_app/tests/test.yml
Normal file
6
examples/roles/demo_app/tests/test.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
roles:
|
||||
- demo_app
|
||||
3
examples/roles/demo_app/vars/main.yml
Normal file
3
examples/roles/demo_app/vars/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# vars file for demo_app
|
||||
11
examples/roles/hosts
Normal file
11
examples/roles/hosts
Normal file
@@ -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
|
||||
38
examples/roles/mysql/README.md
Normal file
38
examples/roles/mysql/README.md
Normal file
@@ -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).
|
||||
3
examples/roles/mysql/defaults/main.yml
Normal file
3
examples/roles/mysql/defaults/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# defaults file for mysql
|
||||
5
examples/roles/mysql/handlers/main.yml
Normal file
5
examples/roles/mysql/handlers/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# handlers file for mysql
|
||||
- name: restart mysql
|
||||
service: name=mysql state=restarted
|
||||
35
examples/roles/mysql/meta/main.yml
Normal file
35
examples/roles/mysql/meta/main.yml
Normal file
@@ -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.
|
||||
26
examples/roles/mysql/tasks/main.yml
Normal file
26
examples/roles/mysql/tasks/main.yml
Normal file
@@ -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
|
||||
3
examples/roles/mysql/tests/inventory
Normal file
3
examples/roles/mysql/tests/inventory
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
localhost
|
||||
|
||||
6
examples/roles/mysql/tests/test.yml
Normal file
6
examples/roles/mysql/tests/test.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
roles:
|
||||
- mysql
|
||||
3
examples/roles/mysql/vars/main.yml
Normal file
3
examples/roles/mysql/vars/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# vars file for mysql
|
||||
38
examples/roles/nginx/README.md
Normal file
38
examples/roles/nginx/README.md
Normal file
@@ -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).
|
||||
3
examples/roles/nginx/defaults/main.yml
Normal file
3
examples/roles/nginx/defaults/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# defaults file for nginx
|
||||
5
examples/roles/nginx/handlers/main.yml
Normal file
5
examples/roles/nginx/handlers/main.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
# handlers file for nginx
|
||||
---
|
||||
- name: restart nginx
|
||||
service: name=nginx state=restarted
|
||||
35
examples/roles/nginx/meta/main.yml
Normal file
35
examples/roles/nginx/meta/main.yml
Normal file
@@ -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.
|
||||
20
examples/roles/nginx/tasks/main.yml
Normal file
20
examples/roles/nginx/tasks/main.yml
Normal file
@@ -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
|
||||
13
examples/roles/nginx/templates/nginx.conf.j2
Normal file
13
examples/roles/nginx/templates/nginx.conf.j2
Normal file
@@ -0,0 +1,13 @@
|
||||
upstream demo {
|
||||
{% for server in groups.webserver %}
|
||||
server {{ server }};
|
||||
{% endfor %}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location / {
|
||||
proxy_pass http://demo;
|
||||
}
|
||||
}
|
||||
3
examples/roles/nginx/tests/inventory
Normal file
3
examples/roles/nginx/tests/inventory
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
localhost
|
||||
|
||||
6
examples/roles/nginx/tests/test.yml
Normal file
6
examples/roles/nginx/tests/test.yml
Normal file
@@ -0,0 +1,6 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
- hosts: localhost
|
||||
remote_user: root
|
||||
roles:
|
||||
- nginx
|
||||
3
examples/roles/nginx/vars/main.yml
Normal file
3
examples/roles/nginx/vars/main.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
#SPDX-License-Identifier: MIT-0
|
||||
---
|
||||
# vars file for nginx
|
||||
16
examples/roles/site.yml
Normal file
16
examples/roles/site.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
- hosts: database
|
||||
become: true
|
||||
roles:
|
||||
- mysql
|
||||
|
||||
- hosts: loadbalancer
|
||||
become: true
|
||||
roles:
|
||||
- nginx
|
||||
|
||||
- hosts: webserver
|
||||
become: true
|
||||
roles:
|
||||
- apache2
|
||||
- demo_app
|
||||
Reference in New Issue
Block a user