├── .github └── workflows │ ├── pytest.yaml │ └── python-version.yaml ├── .gitignore ├── LICENSE ├── README.md ├── exercises ├── 1-endpoints │ ├── app.py │ └── requirements.txt ├── 2-logging │ ├── app.log │ └── app.py ├── Vagrantfile ├── go-helloworld │ ├── Dockerfile │ ├── README.md │ ├── go.mod │ └── main.go └── python-helloworld │ ├── Dockerfile │ ├── app.py │ ├── requirements.txt │ └── test.py ├── notes ├── cu.pdf ├── l1.pdf ├── l2.pdf ├── l3.pdf ├── l4.pdf └── l5.pdf └── resources ├── Docker-Cheat-Sheet.pdf └── Kubernetes Resources.png /.github/workflows/pytest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/.github/workflows/pytest.yaml -------------------------------------------------------------------------------- /.github/workflows/python-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/.github/workflows/python-version.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .vscode 3 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/README.md -------------------------------------------------------------------------------- /exercises/1-endpoints/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/1-endpoints/app.py -------------------------------------------------------------------------------- /exercises/1-endpoints/requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /exercises/2-logging/app.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/2-logging/app.log -------------------------------------------------------------------------------- /exercises/2-logging/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/2-logging/app.py -------------------------------------------------------------------------------- /exercises/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/Vagrantfile -------------------------------------------------------------------------------- /exercises/go-helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/go-helloworld/Dockerfile -------------------------------------------------------------------------------- /exercises/go-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/go-helloworld/README.md -------------------------------------------------------------------------------- /exercises/go-helloworld/go.mod: -------------------------------------------------------------------------------- 1 | module test3 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /exercises/go-helloworld/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/go-helloworld/main.go -------------------------------------------------------------------------------- /exercises/python-helloworld/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/python-helloworld/Dockerfile -------------------------------------------------------------------------------- /exercises/python-helloworld/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/python-helloworld/app.py -------------------------------------------------------------------------------- /exercises/python-helloworld/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/python-helloworld/requirements.txt -------------------------------------------------------------------------------- /exercises/python-helloworld/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/exercises/python-helloworld/test.py -------------------------------------------------------------------------------- /notes/cu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/notes/cu.pdf -------------------------------------------------------------------------------- /notes/l1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/notes/l1.pdf -------------------------------------------------------------------------------- /notes/l2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/notes/l2.pdf -------------------------------------------------------------------------------- /notes/l3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/notes/l3.pdf -------------------------------------------------------------------------------- /notes/l4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/notes/l4.pdf -------------------------------------------------------------------------------- /notes/l5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/notes/l5.pdf -------------------------------------------------------------------------------- /resources/Docker-Cheat-Sheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/resources/Docker-Cheat-Sheet.pdf -------------------------------------------------------------------------------- /resources/Kubernetes Resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/albatrosspreacher/udacity-SUSE-cloud-native-scholarship/HEAD/resources/Kubernetes Resources.png --------------------------------------------------------------------------------