2 Commits
v0.1.0 ... main

Author SHA1 Message Date
Aleksandr Tcitlionok
ea869e64b3 chore(app): use active docker image repository
All checks were successful
CI Pipeline / Build and Push Docker Image (push) Successful in 3m53s
2024-12-11 13:54:32 +00:00
Aleksandr Tcitlionok
ca4784dd45 fix(ci): add version and sha tags
All checks were successful
CI Pipeline / Build and Push Docker Image (push) Successful in 2m32s
2024-12-11 11:14:57 +00:00
4 changed files with 7 additions and 3 deletions

View File

@@ -4,6 +4,8 @@ on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
@@ -44,3 +46,5 @@ jobs:
push: true
tags: |
${{ vars.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:latest
${{ vars.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }}
${{ vars.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.ref_name }}

View File

@@ -57,7 +57,7 @@ docker push <your-ecr-repo>:latest
### Deploy to EKS
Apply RBAC and deployment configurations:
Modify and apply RBAC and deployment configurations:
```bash
kubectl apply -f examples/k8s/rbac.yaml

View File

@@ -17,7 +17,7 @@ spec:
serviceAccountName: metalcheck-sa
containers:
- name: backend
image: <your-ecr-repo>:latest
image: ak-git.vectorsigma.ru/terghalin/metalcheck:latest
envFrom:
- configMapRef:
name: api-config

View File

@@ -1,7 +1,7 @@
replicaCount: 2
image:
repository: ghcr.io/terghalin/metalcheck-backend
repository: ak-git.vectorsigma.ru/terghalin/metalcheck:latest
tag: latest
pullPolicy: IfNotPresent