├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── create-cluster.md ├── myhistory.txt ├── tmux.md ├── tools.md └── vagrant ├── libvirt ├── Vagrantfile └── data │ └── test.txt └── virtualbox ├── Vagrantfile └── data └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/README.md -------------------------------------------------------------------------------- /create-cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/create-cluster.md -------------------------------------------------------------------------------- /myhistory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/myhistory.txt -------------------------------------------------------------------------------- /tmux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/tmux.md -------------------------------------------------------------------------------- /tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/tools.md -------------------------------------------------------------------------------- /vagrant/libvirt/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/vagrant/libvirt/Vagrantfile -------------------------------------------------------------------------------- /vagrant/libvirt/data/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vagrant/virtualbox/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeciopires/learning-cka/HEAD/vagrant/virtualbox/Vagrantfile -------------------------------------------------------------------------------- /vagrant/virtualbox/data/test.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------