├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── Kubernetes └── aks.ps1 ├── README.md ├── app └── main.go ├── azure-pipelines-1.yml ├── azure-pipelines-2.yml ├── azure-pipelines.yml └── manifests ├── deployment.yml └── service.yml /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/Dockerfile -------------------------------------------------------------------------------- /Kubernetes/aks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/Kubernetes/aks.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/README.md -------------------------------------------------------------------------------- /app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/app/main.go -------------------------------------------------------------------------------- /azure-pipelines-1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/azure-pipelines-1.yml -------------------------------------------------------------------------------- /azure-pipelines-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/azure-pipelines-2.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /manifests/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/manifests/deployment.yml -------------------------------------------------------------------------------- /manifests/service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdminTurnedDevOps/Interview-Prep/HEAD/manifests/service.yml --------------------------------------------------------------------------------