Managing Enterprise Servers Portfolio


By: John David Lamzon




Project maintained by jdlamzon-tip

Quiz 5.1: Containerization



Follow the procedure:

1. Create a directory named “quiz51” in your student number directory in Quiz 1.3 2. Create a markdown file named “README.md” in the newly created directory with the directory summary 3. Create playbook to install Elastic Stack in a contanerized form. 4. Then create a Pull request and put your forked repo in the only question of this quiz (Note answer this quiz as well as create a pull request).

Output:

GitHub Page

Directory Summary:

. ├── README.md ├── ansible.cfg ├── inventory ├── playbook.yaml └── roles ├── centos-containerized_elk │ ├── README.md │ ├── defaults │ │ └── main.yml │ ├── files │ ├── handlers │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ └── main.yml │ ├── templates │ ├── tests │ │ ├── inventory │ │ └── test.yml │ └── vars │ └── main.yml └── ubuntu-containerized_elk ├── README.md ├── defaults │ └── main.yml ├── files ├── handlers │ └── main.yml ├── meta │ └── main.yml ├── tasks │ └── main.yml ├── templates ├── tests │ ├── inventory │ └── test.yml └── vars └── main.yml 19 directories, 20 files