-
Notifications
You must be signed in to change notification settings - Fork 0
Home
The Inception-of-Things project initiates the journey of individuals into the world of DevOps, providing them with the necessary skills, knowledge, and experience to thrive in this dynamic field.
- A condensed overview of important notions of Kubernetes, Vagrant,
libvirt, and other tools. - Important notions of CI/CD, Infrastructure as Code, Monitoring, etc..
- A lot of definitions and explanations of some lexicon.
Don't take this wiki as a guide or a complete documentation, I condensed a lot of information and made simplifications to make it more accessible. Always refer to the official documentation of each tool for more in-depth knowledge.
Instead of this documentation, the real objective of this repo is to do some exercises and hands-on practice to solidify your understanding of the concepts presented here, and this project is divided into 3 different parts p1, p2, and p3. You can find the details of each part in the respective directories in the repository.
If you are using Fedora as the host machine, you must enable some services to your firewall using the command firewall-cmd to create a synced folder with NFS.
Type the following commands:
sudo firewall-cmd --permanent --zone=libvirt --add-service=nfs3 \
&& sudo firewall-cmd --permanent --zone=libvirt --add-service=nfs \
&& sudo firewall-cmd --permanent --zone=libvirt --add-service=rpc-bind \
&& sudo firewall-cmd --permanent --zone=libvirt --add-service=mountd \
&& sudo firewall-cmd --reloadMore informations in the Official Documentation of Fedora Developer - Vagrant