novo
This commit is contained in:
parent
939df51412
commit
31b6c2896a
5 changed files with 13 additions and 13 deletions
|
|
@ -164,7 +164,7 @@ steps:
|
||||||
DB_PORT: { from_secret: DB_PORT }
|
DB_PORT: { from_secret: DB_PORT }
|
||||||
DB_SSLMODE: { from_secret: DB_SSLMODE }
|
DB_SSLMODE: { from_secret: DB_SSLMODE }
|
||||||
DB_USER: { from_secret: DB_USER }
|
DB_USER: { from_secret: DB_USER }
|
||||||
ENV: "homologation" # Ajustado para resolver CrashLoop
|
ENV: { from_secret: ENV_HML }
|
||||||
CORS_ORIGINS: { from_secret: CORS_ORIGINS }
|
CORS_ORIGINS: { from_secret: CORS_ORIGINS }
|
||||||
JWT_SECRET: { from_secret: JWT_SECRET }
|
JWT_SECRET: { from_secret: JWT_SECRET }
|
||||||
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_SIZE }
|
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_SIZE }
|
||||||
|
|
@ -280,7 +280,7 @@ steps:
|
||||||
DB_PORT: { from_secret: DB_PORT }
|
DB_PORT: { from_secret: DB_PORT }
|
||||||
DB_SSLMODE: { from_secret: DB_SSLMODE }
|
DB_SSLMODE: { from_secret: DB_SSLMODE }
|
||||||
DB_USER: { from_secret: DB_USER }
|
DB_USER: { from_secret: DB_USER }
|
||||||
ENV: "production"
|
ENV: { from_secret: ENV_PRD }
|
||||||
CORS_ORIGINS: { from_secret: CORS_ORIGINS }
|
CORS_ORIGINS: { from_secret: CORS_ORIGINS }
|
||||||
JWT_SECRET: { from_secret: JWT_SECRET }
|
JWT_SECRET: { from_secret: JWT_SECRET }
|
||||||
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_SIZE }
|
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_SIZE }
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,17 @@
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: gohorse-backend
|
name: gohorse-backend-dev
|
||||||
namespace: gohorsejobsdev
|
namespace: gohorsejobsdev
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app: gohorse-backend
|
app: gohorse-backend-dev
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
app: gohorse-backend
|
app: gohorse-backend-dev
|
||||||
env: development
|
env: development
|
||||||
spec:
|
spec:
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,17 @@
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: gohorse-backoffice
|
name: gohorse-backoffice-dev
|
||||||
namespace: gohorsejobsdev
|
namespace: gohorsejobsdev
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app: gohorse-backoffice
|
app: gohorse-backoffice-dev
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
app: gohorse-backoffice
|
app: gohorse-backoffice-dev
|
||||||
env: development
|
env: development
|
||||||
spec:
|
spec:
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,11 @@ spec:
|
||||||
replicas: 2
|
replicas: 2
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app: gohorse-backend
|
app: gohorse-backend-hml
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
app: gohorse-backend
|
app: gohorse-backend-hml
|
||||||
env: homologation
|
env: homologation
|
||||||
spec:
|
spec:
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
|
|
||||||
|
|
@ -1,17 +1,17 @@
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: gohorse-backoffice
|
name: gohorse-backoffice-hml
|
||||||
namespace: gohorsejobshml
|
namespace: gohorsejobshml
|
||||||
spec:
|
spec:
|
||||||
replicas: 1
|
replicas: 1
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app: gohorse-backoffice
|
app: gohorse-backoffice-hml
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
app: gohorse-backoffice
|
app: gohorse-backoffice-hml
|
||||||
env: development
|
env: development
|
||||||
spec:
|
spec:
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue