To deploy an application to AKS I have to:
- Deploy my application to Azure Container Registry
- Create Azure Kubernetes Service
- Create files: service.yml and deployment.yml
- Connect to AKS using commands:
- Execute commands in the command line:
kubectl apply -f deployment.yml kubectl apply -f service.yml
Is it possible to skip connecting to AKS and executing commands above to simplify the deployment process somehow?