├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md ├── scripts │ ├── check-unique-guid.sh │ └── generate-markdown.sh └── workflows │ ├── build.yml │ ├── buildanddeployprod.yml │ ├── buildanddeploystaging.yml │ └── generate-offline.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── en │ ├── items │ │ ├── application.json │ │ ├── bc_dr.json │ │ ├── cluster_multi.json │ │ ├── cluster_security.json │ │ ├── container.json │ │ ├── identity.json │ │ ├── networking.json │ │ ├── operations.json │ │ ├── resource_management.json │ │ ├── storage.json │ │ └── windows.json │ └── project │ │ ├── introductions.json │ │ └── translation.json ├── images │ └── priority │ │ ├── high.svg │ │ ├── low.svg │ │ └── medium.svg ├── scripts │ ├── change_dm.py │ ├── filename_map.csv │ └── transform_to_ft.py └── tooling │ ├── html-generator │ └── template.html │ ├── localization-checker.sh │ ├── readme.md │ └── result.png ├── markdown ├── 00-title.md └── assets │ ├── background5.pdf │ └── eisvogel.latex └── src ├── generator ├── Classes │ ├── ChecklistItem.cs │ └── Options.cs ├── Generator.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── aks-generator.csproj └── web ├── _headers ├── browserconfig.xml ├── docs └── offline-version ├── favicon.ico ├── fta └── aks_checklist.en.json ├── img ├── banners │ └── logo-aks-checklist.png ├── flags │ ├── br.svg │ ├── cn.svg │ ├── en.svg │ ├── es.svg │ ├── fr.svg │ ├── jp.svg │ ├── kr.svg │ ├── ru.svg │ ├── tr.svg │ ├── us.svg │ └── vn.svg ├── icons │ ├── 1x1.png │ └── warning.png ├── logos │ └── logo-aks-checklist.png └── social │ └── facebook-banner.jpg ├── index.html ├── mstile-150x150.png ├── precache-config.js ├── robots.txt ├── scripts └── app.bundle.js ├── service-worker.js └── styles ├── main.min.css └── main.min.css.map /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/scripts/check-unique-guid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/scripts/check-unique-guid.sh -------------------------------------------------------------------------------- /.github/scripts/generate-markdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/scripts/generate-markdown.sh -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/buildanddeployprod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/workflows/buildanddeployprod.yml -------------------------------------------------------------------------------- /.github/workflows/buildanddeploystaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/workflows/buildanddeploystaging.yml -------------------------------------------------------------------------------- /.github/workflows/generate-offline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.github/workflows/generate-offline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/README.md -------------------------------------------------------------------------------- /data/en/items/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/application.json -------------------------------------------------------------------------------- /data/en/items/bc_dr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/bc_dr.json -------------------------------------------------------------------------------- /data/en/items/cluster_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/cluster_multi.json -------------------------------------------------------------------------------- /data/en/items/cluster_security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/cluster_security.json -------------------------------------------------------------------------------- /data/en/items/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/container.json -------------------------------------------------------------------------------- /data/en/items/identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/identity.json -------------------------------------------------------------------------------- /data/en/items/networking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/networking.json -------------------------------------------------------------------------------- /data/en/items/operations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/operations.json -------------------------------------------------------------------------------- /data/en/items/resource_management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/resource_management.json -------------------------------------------------------------------------------- /data/en/items/storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/storage.json -------------------------------------------------------------------------------- /data/en/items/windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/items/windows.json -------------------------------------------------------------------------------- /data/en/project/introductions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/project/introductions.json -------------------------------------------------------------------------------- /data/en/project/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/en/project/translation.json -------------------------------------------------------------------------------- /data/images/priority/high.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/images/priority/high.svg -------------------------------------------------------------------------------- /data/images/priority/low.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/images/priority/low.svg -------------------------------------------------------------------------------- /data/images/priority/medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/images/priority/medium.svg -------------------------------------------------------------------------------- /data/scripts/change_dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/scripts/change_dm.py -------------------------------------------------------------------------------- /data/scripts/filename_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/scripts/filename_map.csv -------------------------------------------------------------------------------- /data/scripts/transform_to_ft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/scripts/transform_to_ft.py -------------------------------------------------------------------------------- /data/tooling/html-generator/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/tooling/html-generator/template.html -------------------------------------------------------------------------------- /data/tooling/localization-checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/tooling/localization-checker.sh -------------------------------------------------------------------------------- /data/tooling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/tooling/readme.md -------------------------------------------------------------------------------- /data/tooling/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/data/tooling/result.png -------------------------------------------------------------------------------- /markdown/00-title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/markdown/00-title.md -------------------------------------------------------------------------------- /markdown/assets/background5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/markdown/assets/background5.pdf -------------------------------------------------------------------------------- /markdown/assets/eisvogel.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/markdown/assets/eisvogel.latex -------------------------------------------------------------------------------- /src/generator/Classes/ChecklistItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/generator/Classes/ChecklistItem.cs -------------------------------------------------------------------------------- /src/generator/Classes/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/generator/Classes/Options.cs -------------------------------------------------------------------------------- /src/generator/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/generator/Generator.cs -------------------------------------------------------------------------------- /src/generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/generator/Program.cs -------------------------------------------------------------------------------- /src/generator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/generator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/generator/aks-generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/generator/aks-generator.csproj -------------------------------------------------------------------------------- /src/web/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/_headers -------------------------------------------------------------------------------- /src/web/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/browserconfig.xml -------------------------------------------------------------------------------- /src/web/docs/offline-version: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/favicon.ico -------------------------------------------------------------------------------- /src/web/fta/aks_checklist.en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/fta/aks_checklist.en.json -------------------------------------------------------------------------------- /src/web/img/banners/logo-aks-checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/banners/logo-aks-checklist.png -------------------------------------------------------------------------------- /src/web/img/flags/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/br.svg -------------------------------------------------------------------------------- /src/web/img/flags/cn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/cn.svg -------------------------------------------------------------------------------- /src/web/img/flags/en.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/en.svg -------------------------------------------------------------------------------- /src/web/img/flags/es.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/es.svg -------------------------------------------------------------------------------- /src/web/img/flags/fr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/fr.svg -------------------------------------------------------------------------------- /src/web/img/flags/jp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/jp.svg -------------------------------------------------------------------------------- /src/web/img/flags/kr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/kr.svg -------------------------------------------------------------------------------- /src/web/img/flags/ru.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/ru.svg -------------------------------------------------------------------------------- /src/web/img/flags/tr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/tr.svg -------------------------------------------------------------------------------- /src/web/img/flags/us.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/us.svg -------------------------------------------------------------------------------- /src/web/img/flags/vn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/flags/vn.svg -------------------------------------------------------------------------------- /src/web/img/icons/1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/icons/1x1.png -------------------------------------------------------------------------------- /src/web/img/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/icons/warning.png -------------------------------------------------------------------------------- /src/web/img/logos/logo-aks-checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/logos/logo-aks-checklist.png -------------------------------------------------------------------------------- /src/web/img/social/facebook-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/img/social/facebook-banner.jpg -------------------------------------------------------------------------------- /src/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/index.html -------------------------------------------------------------------------------- /src/web/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/mstile-150x150.png -------------------------------------------------------------------------------- /src/web/precache-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/precache-config.js -------------------------------------------------------------------------------- /src/web/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/robots.txt -------------------------------------------------------------------------------- /src/web/scripts/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/scripts/app.bundle.js -------------------------------------------------------------------------------- /src/web/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/service-worker.js -------------------------------------------------------------------------------- /src/web/styles/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/styles/main.min.css -------------------------------------------------------------------------------- /src/web/styles/main.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgmorand/the-aks-checklist/HEAD/src/web/styles/main.min.css.map --------------------------------------------------------------------------------