-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: Recommendation/guidance on developer experience #256
Comments
👍 |
The team would like to see this improved as well, it is on our list to investigate. Sorry I can't give you a timeframe at this time. |
If a full-blown local development environment isn't on the near-term horizon, perhaps the team could enable Telepresence or MS's "Bridge to Kubernetes" to replace a pod in the underlying k8s cluster with a local container under development? This workflow has worked great for me in the past with vanilla k8s clusters where local setup / mocking is cumbersome or difficult for some reason. Container Apps is a great solution for running simplified multi-container apps in production, but without a development story it's hard to recommend. |
Is your feature request related to a problem? Please describe.
Scenario: Developer works on a microservice M locally. This microservice has dependencies to other microservices D1..Dn. And D1..Dn have dependencies to other microservices etc. In total there are 300+ microservices running in the cluster.
The developer would like to debug her microservice, tweak the code, test out the changes quickly etc. (IOW have a productive inner loop development experience). Let's also say that for certain scenarios mocking all dependencies is not convenient.
What are recommended ways to develop a Container App in the above scenario? How do customers of Container Apps productively develop/debug/test their services (in non-trivially small environments)?
Describe the solution you'd like.
What we have today is the ability to run/debug/test a microservice locally with all dependencies, by allowing it to connect to other microservices hosted in an AKS cluster (using
kubectl port-forward
). This is not possible in Container Apps, as no access to K8S API is available.Describe alternatives you've considered.
Options we tried:
Additional context.
None.
The text was updated successfully, but these errors were encountered: