├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── init.sh ├── kubernetes ├── deployment.yaml ├── ingress.yaml └── service.yaml └── src ├── archetypes └── default.md ├── config.toml ├── content └── en │ ├── blog │ └── _index.md │ ├── home │ ├── about.md │ ├── contact.md │ ├── index.md │ └── profile.jpg │ └── projects │ └── _index.md ├── layouts └── index.html └── static └── img └── fav.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/.gitmodules -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/SECURITY.md -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/init.sh -------------------------------------------------------------------------------- /kubernetes/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/kubernetes/deployment.yaml -------------------------------------------------------------------------------- /kubernetes/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/kubernetes/ingress.yaml -------------------------------------------------------------------------------- /kubernetes/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/kubernetes/service.yaml -------------------------------------------------------------------------------- /src/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/archetypes/default.md -------------------------------------------------------------------------------- /src/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/config.toml -------------------------------------------------------------------------------- /src/content/en/blog/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/content/en/blog/_index.md -------------------------------------------------------------------------------- /src/content/en/home/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/content/en/home/about.md -------------------------------------------------------------------------------- /src/content/en/home/contact.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Contact" 3 | --- 4 | 5 | Get in touch with us! 6 | -------------------------------------------------------------------------------- /src/content/en/home/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/content/en/home/index.md -------------------------------------------------------------------------------- /src/content/en/home/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/content/en/home/profile.jpg -------------------------------------------------------------------------------- /src/content/en/projects/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/content/en/projects/_index.md -------------------------------------------------------------------------------- /src/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/layouts/index.html -------------------------------------------------------------------------------- /src/static/img/fav.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/mslearn-aks-deployment-pipeline-github-actions/HEAD/src/static/img/fav.ico --------------------------------------------------------------------------------