ci(nextgen): fix CI/CD workflow paths, ArgoCD targetRevision, and container startup migrations
Build and Push Docker Images / deploy (push) Blocked by required conditions
Details
Build and Push Docker Images / build (api) (push) Successful in 2m49s
Details
Build and Push Docker Images / build (musicseerr) (push) Successful in 5m52s
Details
Build and Push Docker Images / build (nextgen) (push) Successful in 8m10s
Details
Build and Push Docker Images / build (web) (push) Successful in 3m54s
Details
Build and Push Docker Images / build (worker) (push) Has been cancelled
Details
Build and Push Docker Images / deploy (push) Blocked by required conditions
Details
Build and Push Docker Images / build (api) (push) Successful in 2m49s
Details
Build and Push Docker Images / build (musicseerr) (push) Successful in 5m52s
Details
Build and Push Docker Images / build (nextgen) (push) Successful in 8m10s
Details
Build and Push Docker Images / build (web) (push) Successful in 3m54s
Details
Build and Push Docker Images / build (worker) (push) Has been cancelled
Details
This commit is contained in:
parent
6ab81944c1
commit
1ba2621f5b
|
|
@ -9,7 +9,10 @@ on:
|
|||
- 'apps/api/**'
|
||||
- 'apps/web/**'
|
||||
- 'apps/nextgen/**'
|
||||
- 'apps/nextgen-dev/**'
|
||||
- 'apps/nextgen-main/**'
|
||||
- 'apps/musicseerr/**'
|
||||
- 'k8s/nextgen/**'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
|||
|
|
@ -28,4 +28,4 @@ EXPOSE 3001
|
|||
ENV PORT=3001
|
||||
ENV NODE_ENV=production
|
||||
|
||||
CMD ["sh", "-c", "mkdir -p ../data && ([ -f ../data/school.db ] || node src/database/init.js) && node src/index.js"]
|
||||
CMD ["sh", "-c", "mkdir -p ../data && node src/database/init.js && node src/index.js"]
|
||||
|
|
@ -91,7 +91,7 @@ spec:
|
|||
project: default
|
||||
source:
|
||||
repoURL: http://gitea.geocrop.svc.cluster.local:3000/fchinembiri/geocrop-platform..git
|
||||
targetRevision: '{{branch}}'
|
||||
targetRevision: HEAD
|
||||
path: k8s/nextgen/next-gen-chart
|
||||
helm:
|
||||
parameters:
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ spec:
|
|||
command:
|
||||
- sh
|
||||
- -c
|
||||
- "mkdir -p /app/data && ([ -f /app/data/school.db ] || node src/database/init.js) && node src/index.js"
|
||||
- "mkdir -p /app/data && node src/database/init.js && node src/index.js"
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: {{ .Values.service.port }}
|
||||
|
|
|
|||
Loading…
Reference in New Issue