Merge branch 'main' of https://git.simplifiquehc.com.br/simplifique/Vendaweb-api
All checks were successful
Build (develop) / Promote (main) / build-and-push-deploy (push) Successful in 1m17s

This commit is contained in:
Luis Eduardo Estevao
2026-02-18 13:31:09 -03:00
5 changed files with 6 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ jobs:
- name: Build and Push - name: Build and Push
run: | run: |
REGISTRY="git.simplifiquehc.com.br" REGISTRY="172.35.0.216:3000"
IMAGE_NAME="$REGISTRY/simplifique/vendaweb-api" IMAGE_NAME="$REGISTRY/simplifique/vendaweb-api"
SHA_TAG=$(echo ${{ gitea.sha }} | cut -c1-7) SHA_TAG=$(echo ${{ gitea.sha }} | cut -c1-7)
@@ -27,7 +27,7 @@ jobs:
- name: Update Manifest and Push to Git - name: Update Manifest and Push to Git
run: | run: |
SHA_TAG=$(echo ${{ gitea.sha }} | cut -c1-7) SHA_TAG=$(echo ${{ gitea.sha }} | cut -c1-7)
IMAGE_NAME="git.simplifiquehc.com.br/simplifique/vendaweb-api" IMAGE_NAME="172.35.0.216:3000/simplifique/vendaweb-api"
MANIFEST_FILE="k8s/overlays/prod/deployment-image-digest-patch.yaml" MANIFEST_FILE="k8s/overlays/prod/deployment-image-digest-patch.yaml"

View File

@@ -6,7 +6,7 @@ metadata:
spec: spec:
project: default project: default
source: source:
repoURL: https://git.simplifiquehc.com.br/simplifique/Vendaweb-api.git repoURL: http://172.35.0.216:3000/simplifique/Vendaweb-api.git
targetRevision: main targetRevision: main
path: k8s/overlays/prod path: k8s/overlays/prod
destination: destination:

View File

@@ -27,7 +27,7 @@ spec:
terminationGracePeriodSeconds: 30 terminationGracePeriodSeconds: 30
containers: containers:
- name: api - name: api
image: git.simplifiquehc.com.br/simplifique/vendaweb-api:589fa29 image: 172.35.0.216:3000/simplifique/vendaweb-api:589fa29
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
ports: ports:
- name: http - name: http

View File

@@ -7,4 +7,4 @@ spec:
spec: spec:
containers: containers:
- name: api - name: api
image: git.simplifiquehc.com.br/simplifique/vendaweb-api:03519ae image: 172.35.0.216:3000/simplifique/vendaweb-api:c088c38

View File

@@ -14,7 +14,7 @@ export class AppController {
@Get('health') @Get('health')
@ApiOperation({ summary: 'Health check' }) @ApiOperation({ summary: 'Health check' })
healthCheck() { healthCheck() {
return { status: 'SIMPLIFIQUE HOME CENTER 2026' }; return { status: 'NOVA VERSAO 2026' };
} }
} }