From 37e35c6f62cba860f26ffe00746d10789bdc0475 Mon Sep 17 00:00:00 2001 From: ValentinoSanchez00 Date: Tue, 10 Dec 2024 13:25:58 +0100 Subject: [PATCH 1/3] incluyendo test --- .github/workflows/SubirDockerfile.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/SubirDockerfile.yaml b/.github/workflows/SubirDockerfile.yaml index d913267..73ba34e 100644 --- a/.github/workflows/SubirDockerfile.yaml +++ b/.github/workflows/SubirDockerfile.yaml @@ -1,4 +1,4 @@ -name: Subir Dockerfile +name: Subir Dockerfiles on: push: From 2485abb6fdc3db16748bff005ecaddc9244e6ace Mon Sep 17 00:00:00 2001 From: ValentinoSanchez00 Date: Tue, 10 Dec 2024 13:32:23 +0100 Subject: [PATCH 2/3] incluyendo test --- valuesdev.yaml | 2 +- valuesprod.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/valuesdev.yaml b/valuesdev.yaml index a1f1fa2..e44c4ef 100644 --- a/valuesdev.yaml +++ b/valuesdev.yaml @@ -1,7 +1,7 @@ frontend: replicas: 2 - image: containerregistryvsanchez.azurecr.io/imagen-proyecto-frontend:0.1.2 + image: containerregistryvsanchez.azurecr.io/imagen-proyecto-frontend:0.1.3 containerPort: 80 resources: requests: diff --git a/valuesprod.yaml b/valuesprod.yaml index c1fb71b..2cd9575 100644 --- a/valuesprod.yaml +++ b/valuesprod.yaml @@ -1,7 +1,7 @@ frontend: replicas: 2 - image: containerregistryvsanchez.azurecr.io/imagen-proyecto-frontend:0.1.2 + image: containerregistryvsanchez.azurecr.io/imagen-proyecto-frontend:0.1.3 containerPort: 80 resources: requests: From 2a090655e0b7bdf0e737e622d409e649d651b5e8 Mon Sep 17 00:00:00 2001 From: ValentinoSanchez00 Date: Tue, 10 Dec 2024 13:43:50 +0100 Subject: [PATCH 3/3] incluyendo test --- .github/workflows/principal.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/principal.yaml b/.github/workflows/principal.yaml index c55a014..ef053de 100644 --- a/.github/workflows/principal.yaml +++ b/.github/workflows/principal.yaml @@ -124,7 +124,7 @@ jobs: - name: Desempaquetar el chart if: inputs.ENVIROMENT == 'develop' run: | - helm upgrade --install develop ${NAME_CHART}-${VERSION_CHART}.tgz --namespace ns-vsanchez -f valuesdev.yaml + helm upgrade --install develop-frontend ${NAME_CHART}-${VERSION_CHART}.tgz --namespace ns-vsanchez -f valuesdev.yaml env: NAME_CHART: chart-${{ inputs.MICROSERVICE }} VERSION_CHART: ${{ inputs.VERSION_CHART }} @@ -132,7 +132,7 @@ jobs: - name: Desempaquetar el chart if: inputs.ENVIROMENT == 'production' run: | - helm upgrade --install production ${NAME_CHART}-${VERSION_CHART}.tgz --namespace ns-vsanchez -f valuesprod.yaml + helm upgrade --install production-frontend ${NAME_CHART}-${VERSION_CHART}.tgz --namespace ns-vsanchez -f valuesprod.yaml env: NAME_CHART: chart-${{ inputs.MICROSERVICE }} VERSION_CHART: ${{ inputs.VERSION_CHART }}