-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: upgrade to .net 8 and refactoring (#227)
- Loading branch information
1 parent
28727ab
commit 4252a41
Showing
976 changed files
with
47,092 additions
and
4,274 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
# This command is used a LOT both below and in daily life | ||
alias k=kubectl | ||
|
||
# Execute a kubectl command against all namespaces | ||
alias kca='_kca(){ kubectl "$@" --all-namespaces; unset -f _kca; }; _kca' | ||
|
||
# Apply a YML file | ||
alias kaf='kubectl apply -f' | ||
|
||
# Drop into an interactive terminal on a container | ||
alias keti='kubectl exec -t -i' | ||
|
||
# Manage configuration quickly to switch contexts between local, dev ad staging. | ||
alias kcuc='kubectl config use-context' | ||
alias kcsc='kubectl config set-context' | ||
alias kcdc='kubectl config delete-context' | ||
alias kccc='kubectl config current-context' | ||
|
||
# List all contexts | ||
alias kcgc='kubectl config get-contexts' | ||
|
||
# General aliases | ||
alias kdel='kubectl delete' | ||
alias kdelf='kubectl delete -f' | ||
|
||
# Pod management. | ||
alias kgp='kubectl get pods' | ||
alias kgpa='kubectl get pods --all-namespaces' | ||
alias kgpw='kgp --watch' | ||
alias kgpwide='kgp -o wide' | ||
alias kep='kubectl edit pods' | ||
alias kdp='kubectl describe pods' | ||
alias kdelp='kubectl delete pods' | ||
alias kgpall='kubectl get pods --all-namespaces -o wide' | ||
|
||
# get pod by label: kgpl "app=myapp" -n myns | ||
alias kgpl='kgp -l' | ||
|
||
# get pod by namespace: kgpn kube-system" | ||
alias kgpn='kgp -n' | ||
|
||
# Service management. | ||
alias kgs='kubectl get svc' | ||
alias kgsa='kubectl get svc --all-namespaces' | ||
alias kgsw='kgs --watch' | ||
alias kgswide='kgs -o wide' | ||
alias kes='kubectl edit svc' | ||
alias kds='kubectl describe svc' | ||
alias kdels='kubectl delete svc' | ||
|
||
# Ingress management | ||
alias kgi='kubectl get ingress' | ||
alias kgia='kubectl get ingress --all-namespaces' | ||
alias kei='kubectl edit ingress' | ||
alias kdi='kubectl describe ingress' | ||
alias kdeli='kubectl delete ingress' | ||
|
||
# Namespace management | ||
alias kgns='kubectl get namespaces' | ||
alias kens='kubectl edit namespace' | ||
alias kdns='kubectl describe namespace' | ||
alias kdelns='kubectl delete namespace' | ||
alias kcn='kubectl config set-context --current --namespace' | ||
|
||
# ConfigMap management | ||
alias kgcm='kubectl get configmaps' | ||
alias kgcma='kubectl get configmaps --all-namespaces' | ||
alias kecm='kubectl edit configmap' | ||
alias kdcm='kubectl describe configmap' | ||
alias kdelcm='kubectl delete configmap' | ||
|
||
# Secret management | ||
alias kgsec='kubectl get secret' | ||
alias kgseca='kubectl get secret --all-namespaces' | ||
alias kdsec='kubectl describe secret' | ||
alias kdelsec='kubectl delete secret' | ||
|
||
# Deployment management. | ||
alias kgd='kubectl get deployment' | ||
alias kgda='kubectl get deployment --all-namespaces' | ||
alias kgdw='kgd --watch' | ||
alias kgdwide='kgd -o wide' | ||
alias ked='kubectl edit deployment' | ||
alias kdd='kubectl describe deployment' | ||
alias kdeld='kubectl delete deployment' | ||
alias ksd='kubectl scale deployment' | ||
alias krsd='kubectl rollout status deployment' | ||
|
||
# Rollout management. | ||
alias kgrs='kubectl get replicaset' | ||
alias kdrs='kubectl describe replicaset' | ||
alias kers='kubectl edit replicaset' | ||
alias krh='kubectl rollout history' | ||
alias kru='kubectl rollout undo' | ||
|
||
# Statefulset management. | ||
alias kgss='kubectl get statefulset' | ||
alias kgssa='kubectl get statefulset --all-namespaces' | ||
alias kgssw='kgss --watch' | ||
alias kgsswide='kgss -o wide' | ||
alias kess='kubectl edit statefulset' | ||
alias kdss='kubectl describe statefulset' | ||
alias kdelss='kubectl delete statefulset' | ||
alias ksss='kubectl scale statefulset' | ||
alias krsss='kubectl rollout status statefulset' | ||
|
||
# Port forwarding | ||
alias kpf="kubectl port-forward" | ||
|
||
# Tools for accessing all information | ||
alias kga='kubectl get all' | ||
alias kgaa='kubectl get all --all-namespaces' | ||
|
||
# Logs | ||
alias kl='kubectl logs' | ||
alias kl1h='kubectl logs --since 1h' | ||
alias kl1m='kubectl logs --since 1m' | ||
alias kl1s='kubectl logs --since 1s' | ||
alias klf='kubectl logs -f' | ||
alias klf1h='kubectl logs --since 1h -f' | ||
alias klf1m='kubectl logs --since 1m -f' | ||
alias klf1s='kubectl logs --since 1s -f' | ||
|
||
# File copy | ||
alias kcp='kubectl cp' | ||
|
||
# Node Management | ||
alias kgno='kubectl get nodes' | ||
alias keno='kubectl edit node' | ||
alias kdno='kubectl describe node' | ||
alias kdelno='kubectl delete node' | ||
|
||
# PVC management. | ||
alias kgpvc='kubectl get pvc' | ||
alias kgpvca='kubectl get pvc --all-namespaces' | ||
alias kgpvcw='kgpvc --watch' | ||
alias kepvc='kubectl edit pvc' | ||
alias kdpvc='kubectl describe pvc' | ||
alias kdelpvc='kubectl delete pvc' | ||
|
||
# Service account management. | ||
alias kdsa="kubectl describe sa" | ||
alias kdelsa="kubectl delete sa" | ||
|
||
# DaemonSet management. | ||
alias kgds='kubectl get daemonset' | ||
alias kgdsw='kgds --watch' | ||
alias keds='kubectl edit daemonset' | ||
alias kdds='kubectl describe daemonset' | ||
alias kdelds='kubectl delete daemonset' | ||
|
||
# CronJob management. | ||
alias kgcj='kubectl get cronjob' | ||
alias kecj='kubectl edit cronjob' | ||
alias kdcj='kubectl describe cronjob' | ||
alias kdelcj='kubectl delete cronjob' | ||
|
||
# Job management. | ||
alias kgj='kubectl get job' | ||
alias kej='kubectl edit job' | ||
alias kdj='kubectl describe job' | ||
alias kdelj='kubectl delete job' |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/ubuntu/.devcontainer/base.Dockerfile | ||
# https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/ubuntu/.devcontainer | ||
# https://github.com/devcontainers/images/tree/main/src/dotnet | ||
# https://containers.dev/guide/dockerfile#dockerfile | ||
|
||
# Update 'VARIANT' to pick an Ubuntu version: jammy / ubuntu-22.04, focal / ubuntu-20.04, bionic /ubuntu-18.04 | ||
# Use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon. | ||
ARG VARIANT="jammy" | ||
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT} | ||
FROM mcr.microsoft.com/devcontainers/dotnet:latest | ||
|
||
# Add additional commands |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,113 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: | ||
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.0/containers/ubuntu | ||
// https://github.com/microsoft/vscode-remote-try-dotnetcore/blob/main/.devcontainer/devcontainer.json | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet | ||
// https://docs.github.com/en/codespaces/setting-up-your-project-for-codespaces/adding-a-dev-container-configuration/setting-up-your-dotnet-project-for-codespaces | ||
// https://github.com/microsoft/vscode-remote-try-dotnet | ||
// https://dev.to/this-is-learning/set-up-github-codespaces-for-a-net-8-application-5999 | ||
// https://audacioustux.notion.site/Getting-Started-with-Devcontainer-c727dbf9d56f4d6b9b0ef87b3111693f | ||
{ | ||
"name": "Ubuntu", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
// Update 'VARIANT' to pick an Ubuntu version: jammy / ubuntu-22.04, focal / ubuntu-20.04, bionic /ubuntu-18.04 | ||
// Use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon. | ||
"args": { | ||
"VARIANT": "ubuntu-22.04" | ||
} | ||
}, | ||
"extensions": [ | ||
"ms-dotnettools.csharp", | ||
"mutantdino.resourcemonitor", | ||
"humao.rest-client", | ||
"dzhavat.bracket-pair-toggler", | ||
"Trottero.dotnetwatchattach", | ||
"ms-azuretools.vscode-docker", | ||
"vivaxy.vscode-conventional-commits", | ||
"emmanuelbeziat.vscode-great-icons", | ||
"fernandoescolar.vscode-solution-explorer", | ||
"mikestead.dotenv", | ||
"ms-vscode.vs-keybindings" | ||
], | ||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "uname -a", | ||
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. | ||
"remoteUser": "vscode", | ||
"features": { | ||
"docker-in-docker": "latest" | ||
} | ||
} | ||
"name": "Food Delivery Microservices", | ||
// use existing dev container templates. More info: https://containers.dev/guide/dockerfile, https://containers.dev/templates | ||
//"image": "mcr.microsoft.com/devcontainers/dotnet:1-7.0", | ||
// use a Dockerfile file. More info: https://containers.dev/guide/dockerfile#dockerfile | ||
// "build": { | ||
// // Path is relative to the devcontainer.json file. | ||
// "dockerfile": "Dockerfile" | ||
// }, | ||
// using a Dockerfile with Docker Compose, https://containers.dev/guide/dockerfile#docker-compose-image | ||
"dockerComposeFile": "docker-compose.yaml", | ||
"service": "devcontainer", | ||
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}", | ||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
"features": { | ||
// https://github.com/devcontainers/features/tree/main/src/dotnet#dotnet-cli-dotnet | ||
"ghcr.io/devcontainers/features/dotnet:2": { | ||
// this version should be matched with global.json .net version for working vscode IntelliSense correctly | ||
"version": "8.0.303", | ||
"additionalVersions": "latest, 7.0.410, 8.0.303, 6.0.424", | ||
"aspNetCoreRuntimeVersions": "latest, 7.0" | ||
}, | ||
// https://github.com/devcontainers/features/tree/main/src/github-cli | ||
"ghcr.io/devcontainers/features/github-cli:1": { | ||
"version": "2" | ||
}, | ||
// https://github.com/devcontainers/features/tree/main/src/powershell | ||
"ghcr.io/devcontainers/features/powershell:1": { | ||
"version": "latest" | ||
}, | ||
// https://github.com/devcontainers/features/tree/main/src/node | ||
"ghcr.io/devcontainers/features/node:1": {}, | ||
// // https://github.com/devcontainers/features/tree/main/src/kubectl-helm-minikube | ||
// "ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {}, | ||
// // https://github.com/devcontainers/features/tree/main/src/terraform | ||
// "ghcr.io/devcontainers/features/terraform:1": {}, | ||
// https://github.com/devcontainers/features/tree/main/src/docker-in-docker | ||
// https://devopscube.com/run-docker-in-docker/ | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": { | ||
"dockerDashComposeVersion": "v2" | ||
}, | ||
"ghcr.io/devcontainers/features/git:1": {}, | ||
// https://github.com/devcontainers/features/tree/main/src/common-utils | ||
"ghcr.io/devcontainers/features/common-utils:2": { | ||
"configureZshAsDefaultShell": true | ||
} | ||
}, | ||
// Configure tool-specific properties. | ||
"customizations": { | ||
// Configure properties specific to VS Code. | ||
"vscode": { | ||
"settings": { | ||
"git.autofetch": true, | ||
"files.autoSave": "onFocusChange", | ||
"editor.formatOnSave": true, | ||
"editor.suggest.snippetsPreventQuickSuggestions": false, | ||
"explorer.autoReveal": true, | ||
"resmon.show.cpufreq": false, | ||
"dotnet.defaultSolution": "food-delivery.sln", | ||
"dotnet.server.startTimeout": 60000, | ||
"omnisharp.projectLoadTimeout": 60, | ||
"workbench.colorTheme": "Visual Studio Light", | ||
"workbench.iconTheme": "material-icon-theme", | ||
"editor.minimap.enabled": false, | ||
"editor.fontFamily": "'MesloLGM Nerd Font', 'Droid Sans Mono', 'monospace', 'Droid Sans Fallback', 'Consolas'", | ||
"editor.fontSize": 14, | ||
"explorer.confirmDelete": false, | ||
"terminal.integrated.defaultProfile.windows": "PowerShell", | ||
"terminal.integrated.defaultProfile.linux": "zsh", | ||
"powershell.cwd": "~", | ||
"terminal.external.windowsExec": "%LOCALAPPDATA%\\Microsoft\\WindowsApps\\pwsh.exe" | ||
}, | ||
"extensions": [ | ||
"streetsidesoftware.code-spell-checker", | ||
"ms-dotnettools.csdevkit", | ||
"mutantdino.resourcemonitor", | ||
"humao.rest-client", | ||
"dzhavat.bracket-pair-toggler", | ||
"ms-azuretools.vscode-docker", | ||
"vivaxy.vscode-conventional-commits", | ||
"emmanuelbeziat.vscode-great-icons", | ||
"ms-vscode.vs-keybindings", | ||
"GitHub.vscode-github-actions", | ||
"PKief.material-icon-theme", | ||
"EditorConfig.EditorConfig", | ||
"DavidAnson.vscode-markdownlint" | ||
] | ||
} | ||
}, | ||
"hostRequirements": { | ||
"cpus": 2, | ||
"memory": "8gb", | ||
"storage": "32gb" | ||
}, | ||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [5000, 5001], | ||
// "portsAttributes": { | ||
// "5001": { | ||
// "protocol": "https" | ||
// } | ||
// } | ||
// https://containers.dev/implementors/json_reference/#lifecycle-scripts | ||
"updateContentCommand": "chmod +x .devcontainer/scripts/update.sh", | ||
"postCreateCommand": "chmod +x .devcontainer/scripts/post-create.sh" | ||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
Oops, something went wrong.