├── README.md ├── hands-on ├── aws │ └── template ├── jenkins │ ├── README.md │ └── testscript.sh └── kuberenetes │ └── task-00 ├── notes ├── aws │ └── cheetsheet.doc ├── docker │ └── cheetsheet.doc └── kubernetes │ └── cheetsheet.doc └── today-I-learned.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZunairaSid/100-Days-Of-DevOps/HEAD/README.md -------------------------------------------------------------------------------- /hands-on/aws/template: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hands-on/jenkins/README.md: -------------------------------------------------------------------------------- 1 | # sample_code 2 | shell script for jenkins pipeline 3 | -------------------------------------------------------------------------------- /hands-on/jenkins/testscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZunairaSid/100-Days-Of-DevOps/HEAD/hands-on/jenkins/testscript.sh -------------------------------------------------------------------------------- /hands-on/kuberenetes/task-00: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notes/aws/cheetsheet.doc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notes/docker/cheetsheet.doc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /notes/kubernetes/cheetsheet.doc: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /today-I-learned.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZunairaSid/100-Days-Of-DevOps/HEAD/today-I-learned.md --------------------------------------------------------------------------------