This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Methodologies: | |
| DDD: Domain-Driven Design | |
| EDA: Event-Driven Architecture | |
| TDD: Test-Driven Development | |
| CQRS: Command Query Responsibility Segregation | |
| ES: Event Sourcing | |
| CI: Continuous Integration | |
| CD: Continuous Deployment | |
| MS: Microservices |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.2.0", | |
| "adapter": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "adapterArgs": "-c \"%SolutionRootForBash%/kube-debug.sh --selector app.kubernetes.io/name=my-app-name --namespace my-app-namespace\"", | |
| "configurations": [ | |
| { | |
| "name": "dotnet k8s attach", | |
| "type": "coreclr", | |
| "request": "attach", | |
| "processName": "dotnet" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -e | |
| while [ "$1" != "" ]; do | |
| case $1 in | |
| -n | --namespace) | |
| NAMESPACE=$2 | |
| shift 2 | |
| ;; | |
| -s | --selector) | |
| SELECTOR=$2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Methodologies: | |
| DDD: Domain-Driven Design | |
| EDA: Event-Driven Architecture | |
| TDD: Test-Driven Development | |
| CQRS: Command Query Responsibility Segregation | |
| ES: Event Sourcing | |
| CI: Continuous Integration | |
| CD: Continuous Deployment and Delivery | |
| MS: Microservices | |
| LS: Lambda Architecture |
OlderNewer