Skip to content

Commit c206558

Browse files
committed
Update devcontainer configuration, .gitignore, and AKS README for improved setup and resource location
1 parent 5d8cb86 commit c206558

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
},
1111
"ghcr.io/devcontainers/features/dotnet:2": {
1212
"version": "8.0"
13+
},
14+
"ghcr.io/devcontainers-extra/features/kubectl-asdf:2": {
15+
"version": "latest"
1316
}
1417
},
1518
"customizations": {

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,24 @@ private.readme.md
3636
.vagrant
3737
01-contenedores/lemoncode-challenge/dotnet-stack/backend/obj/Debug/netcoreapp3.1/backend.assets.cache
3838
01-contenedores/lemoncode-challenge/dotnet-stack/backend/obj/Debug/netcoreapp3.1/backend.GeneratedMSBuildEditorConfig.editorconfig
39+
40+
41+
# Gradle
42+
.gradle
43+
44+
# Build results
45+
[Dd]ebug/
46+
[Dd]ebugPublic/
47+
[Rr]elease/
48+
[Rr]eleases/
49+
x64/
50+
x86/
51+
build/
52+
bld/
53+
[Bb]in/
54+
# Ignorar el directorio obj en cualquier nivel
55+
**/[Oo]bj/
56+
[Oo]ut/
57+
msbuild.log
58+
msbuild.err
59+
msbuild.wrn

04-cloud/00-aks/01-mi-primer-aks/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Una vez lo tengas, utiliza estas variables de entorno para configurar las tuyas
77
```bash
88
RESOURCE_GROUP="bootcamp-lemoncode"
99
AKS_NAME="lemoncode-cluster"
10-
LOCATION="uksouth"
10+
LOCATION="spaincentral"
1111
```
1212

1313
o si estás en Windows:
1414

1515
```pwsh
1616
$RESOURCE_GROUP="bootcamp-lemoncode"
1717
$AKS_NAME="lemoncode-cluster"
18-
$LOCATION="uksouth"
18+
$LOCATION="spaincentral"
1919
```
2020

2121
Con estas estamos diciendo cuál sería el nombre del grupo de recursos donde voy a almacenar mi nuevo clúster de Kubernetes, el nombre que le voy a dar al mismo, así como la localización donde se desplegará este. Con estas ya puedo crear primeramente el grupo de recursos:

04-cloud/00-aks/01-mi-primer-aks/heroes.http

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@base_url = http://172.165.145.185/api/hero
1+
@base_url = http://68.221.252.95/api/hero
22

33
GET {{base_url}} HTTP/1.1
44

0 commit comments

Comments
 (0)