https://github.com/computacenter-com/ansible-workshop-exercises
MkDocs deployment of exercises for Computacenter Ansible workshop
https://github.com/computacenter-com/ansible-workshop-exercises
ansible workshop
Last synced: 5 months ago
JSON representation
MkDocs deployment of exercises for Computacenter Ansible workshop
- Host: GitHub
- URL: https://github.com/computacenter-com/ansible-workshop-exercises
- Owner: computacenter-com
- Created: 2022-03-23T07:29:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-02-03T12:36:46.000Z (5 months ago)
- Last Synced: 2026-02-03T22:23:34.403Z (5 months ago)
- Topics: ansible, workshop
- Language: Markdown
- Homepage: https://timgrt.github.io/Ansible-Workshop-Exercises/
- Size: 43 MB
- Stars: 5
- Watchers: 2
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
Awesome Lists containing this project
README
# Ansible Workshop Exercises
This repository contains all exercise descriptions for my Ansible Workshop, utilizing the Red Hat demo environment. The Workshop is inspired by the [Red Hat Training course for Ansible](https://github.com/ansible/workshops), but adds additional exercises and more descriptions for a multi-day workshop.
The exercises are build with MkDocs and published to [Github pages](https://computacenter-com.github.io/ansible-workshop-exercises).
[](https://github.com/computacenter-com/ansible-workshop-exercises/actions/workflows/ci.yml) [](https://github.com/computacenter-com/ansible-workshop-exercises/actions/workflows/cd.yml) [](https://squidfunk.github.io/mkdocs-material/)
## Manual build
A *Containerfile* is provided which bundles all requirements and displays the resulting content in a webserver.
Clone the project and change into the base directory, afterwards build the image:
```bash
podman build -t ansible-workshop-exercise-guide .
```
Start a container from the image, the webserver is available at Port 8080:
```bash
podman run -d -p 8080:8080/tcp --name ansible-workshop ansible-workshop-exercise-guide
```
## Development
We document our Coding Guidelines in the [Contributing Guidelines](.github/CONTRIBUTING.md), this document also includes instructions on how the setup a development environment.