├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── ci.md │ ├── config.yml │ ├── documentation.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── build │ ├── Makefile.core.mk │ ├── Makefile.show-help.mk │ └── latest_release.sh ├── config.yml ├── label-commenter-config.yml ├── labeler.yml ├── readme │ └── images │ │ ├── community.svg │ │ ├── layer5-community-sign.png │ │ ├── slack-128.png │ │ └── slack-dark-128.png ├── release-drafter.yml ├── stale.yml ├── welcome │ └── Layer5-celebration.png └── workflows │ ├── build-and-release.yml │ ├── label-commenter.yml │ ├── labeler.yml │ ├── release-drafter.yml │ └── slack.yml ├── .gitignore ├── .golangci.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING-gitflow.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── content ├── _index.md ├── certifications │ ├── _index.md │ └── your-org-uuid │ │ └── certification-1 │ │ ├── _index.md │ │ ├── image.png │ │ └── test-1.md ├── challenges │ ├── _index.md │ └── your-org-uuid │ │ └── challenge-1 │ │ ├── _index.md │ │ ├── challenge │ │ └── _index.md │ │ ├── description │ │ └── _index.md │ │ ├── faq │ │ └── _index.md │ │ └── image.png ├── content-formatting-examples │ ├── embedded-design-deploy-meshery-using-meshery.js │ └── index.md └── learning-paths │ ├── _index.md │ └── your-org-uuid │ └── example-learning-path │ ├── _index.md │ ├── course-1 │ ├── _index.md │ ├── module │ │ ├── _index.md │ │ ├── container-benefits │ │ │ ├── _index.md │ │ │ └── image-1.png │ │ ├── experience-we-want-to-change │ │ │ ├── _index.md │ │ │ └── image-1.png │ │ ├── history-of-application-deployment │ │ │ ├── _index.md │ │ │ └── image-1.png │ │ ├── new-ideas-and-concepts │ │ │ ├── _index.md │ │ │ └── image-1.png │ │ └── quiz.md │ └── test.md │ ├── course-2 │ ├── _index.md │ ├── module │ │ ├── _index.md │ │ ├── packaging-pricing │ │ │ ├── _index.md │ │ │ └── image-1.png │ │ ├── quiz.md │ │ └── scalable-kubernetes-services │ │ │ ├── _index.md │ │ │ └── image-1.png │ └── test.md │ └── exam.md ├── flake.lock ├── flake.nix ├── go.mod ├── go.sum ├── hugo.yaml ├── layouts └── shortcodes │ └── your-org-uuid │ └── custom-org-shortcode.html ├── package.json ├── postcss.config.js └── static └── your-org-uuid └── images └── image-1.png /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/ISSUE_TEMPLATE/ci.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/build/Makefile.core.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/build/Makefile.core.mk -------------------------------------------------------------------------------- /.github/build/Makefile.show-help.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/build/Makefile.show-help.mk -------------------------------------------------------------------------------- /.github/build/latest_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/build/latest_release.sh -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/label-commenter-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/label-commenter-config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/readme/images/community.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/readme/images/community.svg -------------------------------------------------------------------------------- /.github/readme/images/layer5-community-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/readme/images/layer5-community-sign.png -------------------------------------------------------------------------------- /.github/readme/images/slack-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/readme/images/slack-128.png -------------------------------------------------------------------------------- /.github/readme/images/slack-dark-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/readme/images/slack-dark-128.png -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/welcome/Layer5-celebration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/welcome/Layer5-celebration.png -------------------------------------------------------------------------------- /.github/workflows/build-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/workflows/build-and-release.yml -------------------------------------------------------------------------------- /.github/workflows/label-commenter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/workflows/label-commenter.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/slack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.github/workflows/slack.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING-gitflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/CONTRIBUTING-gitflow.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/SECURITY.md -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/certifications/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/certifications/_index.md -------------------------------------------------------------------------------- /content/certifications/your-org-uuid/certification-1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/certifications/your-org-uuid/certification-1/_index.md -------------------------------------------------------------------------------- /content/certifications/your-org-uuid/certification-1/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/certifications/your-org-uuid/certification-1/image.png -------------------------------------------------------------------------------- /content/certifications/your-org-uuid/certification-1/test-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/certifications/your-org-uuid/certification-1/test-1.md -------------------------------------------------------------------------------- /content/challenges/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/challenges/_index.md -------------------------------------------------------------------------------- /content/challenges/your-org-uuid/challenge-1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/challenges/your-org-uuid/challenge-1/_index.md -------------------------------------------------------------------------------- /content/challenges/your-org-uuid/challenge-1/challenge/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/challenges/your-org-uuid/challenge-1/challenge/_index.md -------------------------------------------------------------------------------- /content/challenges/your-org-uuid/challenge-1/description/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/challenges/your-org-uuid/challenge-1/description/_index.md -------------------------------------------------------------------------------- /content/challenges/your-org-uuid/challenge-1/faq/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/challenges/your-org-uuid/challenge-1/faq/_index.md -------------------------------------------------------------------------------- /content/challenges/your-org-uuid/challenge-1/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/challenges/your-org-uuid/challenge-1/image.png -------------------------------------------------------------------------------- /content/content-formatting-examples/embedded-design-deploy-meshery-using-meshery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/content-formatting-examples/embedded-design-deploy-meshery-using-meshery.js -------------------------------------------------------------------------------- /content/content-formatting-examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/content-formatting-examples/index.md -------------------------------------------------------------------------------- /content/learning-paths/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/container-benefits/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/container-benefits/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/container-benefits/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/container-benefits/image-1.png -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/experience-we-want-to-change/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/experience-we-want-to-change/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/experience-we-want-to-change/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/experience-we-want-to-change/image-1.png -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/history-of-application-deployment/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/history-of-application-deployment/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/history-of-application-deployment/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/history-of-application-deployment/image-1.png -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/new-ideas-and-concepts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/new-ideas-and-concepts/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/new-ideas-and-concepts/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/new-ideas-and-concepts/image-1.png -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/module/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/module/quiz.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-1/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-1/test.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/module/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/module/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/module/packaging-pricing/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/module/packaging-pricing/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/module/packaging-pricing/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/module/packaging-pricing/image-1.png -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/module/quiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/module/quiz.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/module/scalable-kubernetes-services/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/module/scalable-kubernetes-services/_index.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/module/scalable-kubernetes-services/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/module/scalable-kubernetes-services/image-1.png -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/course-2/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/course-2/test.md -------------------------------------------------------------------------------- /content/learning-paths/your-org-uuid/example-learning-path/exam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/content/learning-paths/your-org-uuid/example-learning-path/exam.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/flake.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/go.sum -------------------------------------------------------------------------------- /hugo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/hugo.yaml -------------------------------------------------------------------------------- /layouts/shortcodes/your-org-uuid/custom-org-shortcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/layouts/shortcodes/your-org-uuid/custom-org-shortcode.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/postcss.config.js -------------------------------------------------------------------------------- /static/your-org-uuid/images/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layer5io/academy-example/HEAD/static/your-org-uuid/images/image-1.png --------------------------------------------------------------------------------