ajuste no drone
This commit is contained in:
parent
4b51feeacd
commit
59a7f646ac
7 changed files with 254 additions and 60 deletions
164
.drone.yml
164
.drone.yml
|
|
@ -17,34 +17,24 @@ steps:
|
||||||
settings:
|
settings:
|
||||||
registry: in.gohorsejobs.com
|
registry: in.gohorsejobs.com
|
||||||
repo: in.gohorsejobs.com/gohorsejobsdev/gohorsejobs-backend
|
repo: in.gohorsejobs.com/gohorsejobsdev/gohorsejobs-backend
|
||||||
tags:
|
tags: [ latest, "${DRONE_COMMIT_SHA:0:8}" ]
|
||||||
- latest
|
|
||||||
- ${DRONE_COMMIT_SHA:0:8}
|
|
||||||
context: backend
|
context: backend
|
||||||
dockerfile: backend/Dockerfile
|
dockerfile: backend/Dockerfile
|
||||||
insecure: true
|
insecure: true
|
||||||
insecure_skip_verify: true
|
username: { from_secret: HARBOR_USERNAME }
|
||||||
username:
|
password: { from_secret: HARBOR_PASSWORD }
|
||||||
from_secret: HARBOR_USERNAME
|
|
||||||
password:
|
|
||||||
from_secret: HARBOR_PASSWORD
|
|
||||||
|
|
||||||
- name: build-and-push-backoffice
|
- name: build-and-push-backoffice
|
||||||
image: plugins/docker:latest
|
image: plugins/docker:latest
|
||||||
settings:
|
settings:
|
||||||
registry: in.gohorsejobs.com
|
registry: in.gohorsejobs.com
|
||||||
# Enviando para o novo projeto no Harbor
|
|
||||||
repo: in.gohorsejobs.com/gohorsejobs-backoffice-dev/backoffice
|
repo: in.gohorsejobs.com/gohorsejobs-backoffice-dev/backoffice
|
||||||
tags:
|
tags: [ latest, "${DRONE_COMMIT_SHA:0:8}" ]
|
||||||
- latest
|
|
||||||
- ${DRONE_COMMIT_SHA:0:8}
|
|
||||||
context: backoffice
|
context: backoffice
|
||||||
dockerfile: backoffice/Dockerfile
|
dockerfile: backoffice/Dockerfile
|
||||||
insecure: true
|
insecure: true
|
||||||
username:
|
username: { from_secret: HARBOR_USERNAME }
|
||||||
from_secret: HARBOR_USERNAME
|
password: { from_secret: HARBOR_PASSWORD }
|
||||||
password:
|
|
||||||
from_secret: HARBOR_PASSWORD
|
|
||||||
|
|
||||||
- name: export-envs-to-k8s
|
- name: export-envs-to-k8s
|
||||||
image: bitnami/kubectl:latest
|
image: bitnami/kubectl:latest
|
||||||
|
|
@ -64,13 +54,13 @@ steps:
|
||||||
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 }
|
||||||
PORT: { from_secret: PORT }
|
PORT: { from_secret: PORT }
|
||||||
S3_BUCKET: { from_secret: S3_BUCKET }
|
S3_BUCKET: { from_secret: S3_BUCKET_DEV }
|
||||||
UPLOAD_DIR: { from_secret: UPLOAD_DIR }
|
UPLOAD_DIR: { from_secret: UPLOAD_DIR }
|
||||||
STRIPE_SECRET_KEY: { from_secret: STRIPE_SECRET_KEY }
|
STRIPE_SECRET_KEY: { from_secret: STRIPE_SECRET_KEY_DEV }
|
||||||
STRIPE_WEBHOOK_SECRET: { from_secret: STRIPE_WEBHOOK_SECRET }
|
STRIPE_WEBHOOK_SECRET: { from_secret: STRIPE_WEBHOOK_SECRET_DEV }
|
||||||
STRIPE_PUBLISHABLE_KEY: { from_secret: STRIPE_PUBLISHABLE_KEY }
|
STRIPE_PUBLISHABLE_KEY: { from_secret: STRIPE_PUBLISHABLE_KEY_DEV }
|
||||||
WEBHOOK_BASE_URL: { from_secret: WEBHOOK_BASE_URL }
|
WEBHOOK_BASE_URL: { from_secret: WEBHOOK_BASE_URL_DEV }
|
||||||
DATABASE_URL: { from_secret: DATABASE_URL }
|
DATABASE_URL: { from_secret: DATABASE_URL_DEV }
|
||||||
CLOUDFLARE_API_TOKEN: { from_secret: CLOUDFLARE_API_TOKEN }
|
CLOUDFLARE_API_TOKEN: { from_secret: CLOUDFLARE_API_TOKEN }
|
||||||
CLOUDFLARE_ZONE_ID: { from_secret: CLOUDFLARE_ZONE_ID }
|
CLOUDFLARE_ZONE_ID: { from_secret: CLOUDFLARE_ZONE_ID }
|
||||||
CPANEL_HOST: { from_secret: CPANEL_HOST }
|
CPANEL_HOST: { from_secret: CPANEL_HOST }
|
||||||
|
|
@ -113,16 +103,13 @@ steps:
|
||||||
- name: deploy-apps
|
- name: deploy-apps
|
||||||
image: bitnami/kubectl:latest
|
image: bitnami/kubectl:latest
|
||||||
commands:
|
commands:
|
||||||
# Deploy Backend
|
|
||||||
- kubectl apply -f k8s/dev/backend-deployment.yaml
|
- kubectl apply -f k8s/dev/backend-deployment.yaml
|
||||||
- kubectl apply -f k8s/dev/backend-service.yaml
|
- kubectl apply -f k8s/dev/backend-service.yaml
|
||||||
- kubectl apply -f k8s/dev/backend-ingress-dev.yaml
|
- kubectl apply -f k8s/dev/backend-ingress-dev.yaml
|
||||||
- kubectl rollout restart deployment/gohorse-backend -n gohorsejobsdev
|
|
||||||
|
|
||||||
# Deploy Backoffice (Certifique-se que os arquivos existam nestes caminhos)
|
|
||||||
- kubectl apply -f k8s/dev/backoffice-deployment.yaml
|
- kubectl apply -f k8s/dev/backoffice-deployment.yaml
|
||||||
- kubectl apply -f k8s/dev/backoffice-service.yaml
|
- kubectl apply -f k8s/dev/backoffice-service.yaml
|
||||||
- kubectl apply -f k8s/dev/backoffice-ingress-dev.yaml
|
- kubectl apply -f k8s/dev/backoffice-ingress-dev.yaml
|
||||||
|
- kubectl rollout restart deployment/gohorse-backend -n gohorsejobsdev
|
||||||
- kubectl rollout restart deployment/gohorse-backoffice -n gohorsejobsdev
|
- kubectl rollout restart deployment/gohorse-backoffice -n gohorsejobsdev
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
@ -145,17 +132,24 @@ steps:
|
||||||
settings:
|
settings:
|
||||||
registry: in.gohorsejobs.com
|
registry: in.gohorsejobs.com
|
||||||
repo: in.gohorsejobs.com/gohorsejobshml/gohorsejobs-backend
|
repo: in.gohorsejobs.com/gohorsejobshml/gohorsejobs-backend
|
||||||
tags:
|
tags: [ latest, "${DRONE_COMMIT_SHA:0:8}" ]
|
||||||
- latest
|
|
||||||
- ${DRONE_COMMIT_SHA:0:8}
|
|
||||||
context: backend
|
context: backend
|
||||||
dockerfile: backend/Dockerfile
|
dockerfile: backend/Dockerfile
|
||||||
insecure: true
|
insecure: true
|
||||||
insecure_skip_verify: true
|
username: { from_secret: HARBOR_USERNAME }
|
||||||
username:
|
password: { from_secret: HARBOR_PASSWORD }
|
||||||
from_secret: HARBOR_USERNAME
|
|
||||||
password:
|
- name: build-and-push-backoffice
|
||||||
from_secret: HARBOR_PASSWORD
|
image: plugins/docker:latest
|
||||||
|
settings:
|
||||||
|
registry: in.gohorsejobs.com
|
||||||
|
repo: in.gohorsejobs.com/gohorsejobs-backoffice-hml/backoffice
|
||||||
|
tags: [ latest, "${DRONE_COMMIT_SHA:0:8}" ]
|
||||||
|
context: backoffice
|
||||||
|
dockerfile: backoffice/Dockerfile
|
||||||
|
insecure: true
|
||||||
|
username: { from_secret: HARBOR_USERNAME }
|
||||||
|
password: { from_secret: HARBOR_PASSWORD }
|
||||||
|
|
||||||
- name: export-envs-to-k8s
|
- name: export-envs-to-k8s
|
||||||
image: bitnami/kubectl:latest
|
image: bitnami/kubectl:latest
|
||||||
|
|
@ -164,20 +158,29 @@ steps:
|
||||||
AWS_ENDPOINT: { from_secret: AWS_ENDPOINT }
|
AWS_ENDPOINT: { from_secret: AWS_ENDPOINT }
|
||||||
AWS_REGION: { from_secret: AWS_REGION }
|
AWS_REGION: { from_secret: AWS_REGION }
|
||||||
AWS_SECRET_ACCESS_KEY: { from_secret: AWS_SECRET_ACCESS_KEY }
|
AWS_SECRET_ACCESS_KEY: { from_secret: AWS_SECRET_ACCESS_KEY }
|
||||||
CORS_ORIGINS: { from_secret: CORS_ORIGINS_HML }
|
|
||||||
DB_HOST: { from_secret: DB_HOST }
|
DB_HOST: { from_secret: DB_HOST }
|
||||||
DB_NAME: { from_secret: DB_NAME_HML }
|
DB_NAME: { from_secret: DB_NAME_HML }
|
||||||
DB_PASSWORD: { from_secret: DB_PASSWORD }
|
DB_PASSWORD: { from_secret: DB_PASSWORD }
|
||||||
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"
|
ENV: { from_secret: ENV_DEV }
|
||||||
|
CORS_ORIGINS: { from_secret: CORS_ORIGINS_HML }
|
||||||
JWT_SECRET: { from_secret: JWT_SECRET }
|
JWT_SECRET: { from_secret: JWT_SECRET }
|
||||||
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_CAD_SIZE }
|
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_SIZE }
|
||||||
PORT: { from_secret: PORT }
|
PORT: { from_secret: PORT }
|
||||||
S3_BUCKET: { from_secret: S3_BUCKET }
|
S3_BUCKET: { from_secret: S3_BUCKET_HML }
|
||||||
UPLOAD_DIR: { from_secret: UPLOAD_DIR }
|
UPLOAD_DIR: { from_secret: UPLOAD_DIR }
|
||||||
|
STRIPE_SECRET_KEY: { from_secret: STRIPE_SECRET_KEY_HML }
|
||||||
|
STRIPE_WEBHOOK_SECRET: { from_secret: STRIPE_WEBHOOK_SECRET_HML }
|
||||||
|
STRIPE_PUBLISHABLE_KEY: { from_secret: STRIPE_PUBLISHABLE_KEY_HML }
|
||||||
|
WEBHOOK_BASE_URL: { from_secret: WEBHOOK_BASE_URL_HML }
|
||||||
|
DATABASE_URL: { from_secret: DATABASE_URL_HML }
|
||||||
|
CLOUDFLARE_API_TOKEN: { from_secret: CLOUDFLARE_API_TOKEN }
|
||||||
|
CLOUDFLARE_ZONE_ID: { from_secret: CLOUDFLARE_ZONE_ID }
|
||||||
|
CPANEL_HOST: { from_secret: CPANEL_HOST }
|
||||||
|
CPANEL_USERNAME: { from_secret: CPANEL_USERNAME }
|
||||||
|
CPANEL_API_TOKEN: { from_secret: CPANEL_API_TOKEN }
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
cat <<EOF > .env.k8s
|
cat <<EOF > .env.k8s
|
||||||
|
|
@ -198,19 +201,31 @@ steps:
|
||||||
PORT=$PORT
|
PORT=$PORT
|
||||||
S3_BUCKET=$S3_BUCKET
|
S3_BUCKET=$S3_BUCKET
|
||||||
UPLOAD_DIR=$UPLOAD_DIR
|
UPLOAD_DIR=$UPLOAD_DIR
|
||||||
|
STRIPE_SECRET_KEY=$STRIPE_SECRET_KEY
|
||||||
|
STRIPE_WEBHOOK_SECRET=$STRIPE_WEBHOOK_SECRET
|
||||||
|
STRIPE_PUBLISHABLE_KEY=$STRIPE_PUBLISHABLE_KEY
|
||||||
|
WEBHOOK_BASE_URL=$WEBHOOK_BASE_URL
|
||||||
|
DATABASE_URL=$DATABASE_URL
|
||||||
|
CLOUDFLARE_API_TOKEN=$CLOUDFLARE_API_TOKEN
|
||||||
|
CLOUDFLARE_ZONE_ID=$CLOUDFLARE_ZONE_ID
|
||||||
|
CPANEL_HOST=$CPANEL_HOST
|
||||||
|
CPANEL_USERNAME=$CPANEL_USERNAME
|
||||||
|
CPANEL_API_TOKEN=$CPANEL_API_TOKEN
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
- kubectl -n gohorsejobshml delete secret backend-secrets --ignore-not-found
|
- kubectl -n gohorsejobshml delete secret backend-secrets --ignore-not-found
|
||||||
- kubectl -n gohorsejobshml create secret generic backend-secrets --from-env-file=.env.k8s
|
- kubectl -n gohorsejobshml create secret generic backend-secrets --from-env-file=.env.k8s
|
||||||
|
|
||||||
- name: deploy-backend
|
- name: deploy-apps
|
||||||
image: bitnami/kubectl:latest
|
image: bitnami/kubectl:latest
|
||||||
commands:
|
commands:
|
||||||
- kubectl get pods -n gohorsejobshml
|
|
||||||
- kubectl apply -f k8s/hml/backend-deployment.yaml
|
- kubectl apply -f k8s/hml/backend-deployment.yaml
|
||||||
- kubectl apply -f k8s/hml/backend-service.yaml
|
- kubectl apply -f k8s/hml/backend-service.yaml
|
||||||
- kubectl apply -f k8s/dev/backend-ingress-hml.yaml
|
- kubectl apply -f k8s/hml/backend-ingress-hml.yaml
|
||||||
|
- kubectl apply -f k8s/hml/backoffice-deployment-hml.yaml
|
||||||
|
- kubectl apply -f k8s/hml/backoffice-service-hml.yaml
|
||||||
|
- kubectl apply -f k8s/hml/backoffice-ingress-hml.yaml
|
||||||
- kubectl rollout restart deployment/gohorse-backend -n gohorsejobshml
|
- kubectl rollout restart deployment/gohorse-backend -n gohorsejobshml
|
||||||
|
- kubectl rollout restart deployment/gohorse-backoffice -n gohorsejobshml
|
||||||
|
|
||||||
---
|
---
|
||||||
# ═══════════════════════════════════════════════════════════════════════════════
|
# ═══════════════════════════════════════════════════════════════════════════════
|
||||||
|
|
@ -232,17 +247,24 @@ steps:
|
||||||
settings:
|
settings:
|
||||||
registry: in.gohorsejobs.com
|
registry: in.gohorsejobs.com
|
||||||
repo: in.gohorsejobs.com/gohorsejobs/gohorsejobs-backend
|
repo: in.gohorsejobs.com/gohorsejobs/gohorsejobs-backend
|
||||||
tags:
|
tags: [ latest, "${DRONE_COMMIT_SHA:0:8}" ]
|
||||||
- latest
|
|
||||||
- ${DRONE_COMMIT_SHA:0:8}
|
|
||||||
context: backend
|
context: backend
|
||||||
dockerfile: backend/Dockerfile
|
dockerfile: backend/Dockerfile
|
||||||
insecure: true
|
insecure: true
|
||||||
insecure_skip_verify: true
|
username: { from_secret: HARBOR_USERNAME }
|
||||||
username:
|
password: { from_secret: HARBOR_PASSWORD }
|
||||||
from_secret: HARBOR_USERNAME
|
|
||||||
password:
|
- name: build-and-push-backoffice
|
||||||
from_secret: HARBOR_PASSWORD
|
image: plugins/docker:latest
|
||||||
|
settings:
|
||||||
|
registry: in.gohorsejobs.com
|
||||||
|
repo: in.gohorsejobs.com/gohorsejobs/backoffice
|
||||||
|
tags: [ latest, "${DRONE_COMMIT_SHA:0:8}" ]
|
||||||
|
context: backoffice
|
||||||
|
dockerfile: backoffice/Dockerfile
|
||||||
|
insecure: true
|
||||||
|
username: { from_secret: HARBOR_USERNAME }
|
||||||
|
password: { from_secret: HARBOR_PASSWORD }
|
||||||
|
|
||||||
- name: export-envs-to-k8s
|
- name: export-envs-to-k8s
|
||||||
image: bitnami/kubectl:latest
|
image: bitnami/kubectl:latest
|
||||||
|
|
@ -251,20 +273,29 @@ steps:
|
||||||
AWS_ENDPOINT: { from_secret: AWS_ENDPOINT }
|
AWS_ENDPOINT: { from_secret: AWS_ENDPOINT }
|
||||||
AWS_REGION: { from_secret: AWS_REGION }
|
AWS_REGION: { from_secret: AWS_REGION }
|
||||||
AWS_SECRET_ACCESS_KEY: { from_secret: AWS_SECRET_ACCESS_KEY }
|
AWS_SECRET_ACCESS_KEY: { from_secret: AWS_SECRET_ACCESS_KEY }
|
||||||
CORS_ORIGINS: { from_secret: CORS_ORIGINS }
|
|
||||||
DB_HOST: { from_secret: DB_HOST }
|
DB_HOST: { from_secret: DB_HOST }
|
||||||
DB_NAME: { from_secret: DB_NAME }
|
DB_NAME: { from_secret: DB_NAME_PRD }
|
||||||
DB_PASSWORD: { from_secret: DB_PASSWORD }
|
DB_PASSWORD: { from_secret: DB_PASSWORD }
|
||||||
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_PRD }
|
||||||
JWT_SECRET: { from_secret: JWT_SECRET }
|
JWT_SECRET: { from_secret: JWT_SECRET }
|
||||||
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_CAD_SIZE }
|
MAX_UPLOAD_CAD_SIZE: { from_secret: MAX_UPLOAD_SIZE }
|
||||||
PORT: { from_secret: PORT }
|
PORT: { from_secret: PORT }
|
||||||
S3_BUCKET: { from_secret: S3_BUCKET }
|
S3_BUCKET: { from_secret: S3_BUCKET_PRD }
|
||||||
UPLOAD_DIR: { from_secret: UPLOAD_DIR }
|
UPLOAD_DIR: { from_secret: UPLOAD_DIR }
|
||||||
|
STRIPE_SECRET_KEY: { from_secret: STRIPE_SECRET_KEY_PRD }
|
||||||
|
STRIPE_WEBHOOK_SECRET: { from_secret: STRIPE_WEBHOOK_SECRET_PRD }
|
||||||
|
STRIPE_PUBLISHABLE_KEY: { from_secret: STRIPE_PUBLISHABLE_KEY_PRD }
|
||||||
|
WEBHOOK_BASE_URL: { from_secret: WEBHOOK_BASE_URL_PRD }
|
||||||
|
DATABASE_URL: { from_secret: DATABASE_URL_PRD }
|
||||||
|
CLOUDFLARE_API_TOKEN: { from_secret: CLOUDFLARE_API_TOKEN }
|
||||||
|
CLOUDFLARE_ZONE_ID: { from_secret: CLOUDFLARE_ZONE_ID }
|
||||||
|
CPANEL_HOST: { from_secret: CPANEL_HOST }
|
||||||
|
CPANEL_USERNAME: { from_secret: CPANEL_USERNAME }
|
||||||
|
CPANEL_API_TOKEN: { from_secret: CPANEL_API_TOKEN }
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
cat <<EOF > .env.k8s
|
cat <<EOF > .env.k8s
|
||||||
|
|
@ -285,15 +316,28 @@ steps:
|
||||||
PORT=$PORT
|
PORT=$PORT
|
||||||
S3_BUCKET=$S3_BUCKET
|
S3_BUCKET=$S3_BUCKET
|
||||||
UPLOAD_DIR=$UPLOAD_DIR
|
UPLOAD_DIR=$UPLOAD_DIR
|
||||||
|
STRIPE_SECRET_KEY=$STRIPE_SECRET_KEY
|
||||||
|
STRIPE_WEBHOOK_SECRET=$STRIPE_WEBHOOK_SECRET
|
||||||
|
STRIPE_PUBLISHABLE_KEY=$STRIPE_PUBLISHABLE_KEY
|
||||||
|
WEBHOOK_BASE_URL=$WEBHOOK_BASE_URL
|
||||||
|
DATABASE_URL=$DATABASE_URL
|
||||||
|
CLOUDFLARE_API_TOKEN=$CLOUDFLARE_API_TOKEN
|
||||||
|
CLOUDFLARE_ZONE_ID=$CLOUDFLARE_ZONE_ID
|
||||||
|
CPANEL_HOST=$CPANEL_HOST
|
||||||
|
CPANEL_USERNAME=$CPANEL_USERNAME
|
||||||
|
CPANEL_API_TOKEN=$CPANEL_API_TOKEN
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
- kubectl -n gohorsejobs delete secret backend-secrets --ignore-not-found
|
- kubectl -n gohorsejobs delete secret backend-secrets --ignore-not-found
|
||||||
- kubectl -n gohorsejobs create secret generic backend-secrets --from-env-file=.env.k8s
|
- kubectl -n gohorsejobs create secret generic backend-secrets --from-env-file=.env.k8s
|
||||||
|
|
||||||
- name: deploy-backend
|
- name: deploy-apps
|
||||||
image: bitnami/kubectl:latest
|
image: bitnami/kubectl:latest
|
||||||
commands:
|
commands:
|
||||||
- kubectl get pods -n gohorsejobs
|
|
||||||
- kubectl apply -f k8s/prd/backend-deployment.yaml
|
- kubectl apply -f k8s/prd/backend-deployment.yaml
|
||||||
- kubectl apply -f k8s/prd/backend-service.yaml
|
- kubectl apply -f k8s/prd/backend-service.yaml
|
||||||
|
- kubectl apply -f k8s/prd/backend-ingress-prd.yaml
|
||||||
|
- kubectl apply -f k8s/prd/backoffice-deployment.yaml
|
||||||
|
- kubectl apply -f k8s/prd/backoffice-service.yaml
|
||||||
|
- kubectl apply -f k8s/prd/backoffice-ingress-prd.yaml
|
||||||
- kubectl rollout restart deployment/gohorse-backend -n gohorsejobs
|
- kubectl rollout restart deployment/gohorse-backend -n gohorsejobs
|
||||||
|
- kubectl rollout restart deployment/gohorse-backoffice -n gohorsejobs
|
||||||
35
k8s/hml/backoffice-deployment-hml.yaml
Normal file
35
k8s/hml/backoffice-deployment-hml.yaml
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: gohorse-backoffice
|
||||||
|
namespace: gohorsejobshml
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: gohorse-backoffice
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: gohorse-backoffice
|
||||||
|
env: development
|
||||||
|
spec:
|
||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-registry
|
||||||
|
containers:
|
||||||
|
- name: backoffice
|
||||||
|
# Imagem apontando para o projeto correto no Harbor
|
||||||
|
image: in.gohorsejobs.com/gohorsejobs-backoffice-hml/backoffice:latest
|
||||||
|
imagePullPolicy: Always
|
||||||
|
ports:
|
||||||
|
- containerPort: 8521
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: backend-secrets
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "128Mi"
|
||||||
|
cpu: "100m"
|
||||||
|
limits:
|
||||||
|
memory: "512Mi"
|
||||||
|
cpu: "500m"
|
||||||
27
k8s/hml/backoffice-ingress-hml.yaml
Normal file
27
k8s/hml/backoffice-ingress-hml.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
name: gohorse-backoffice-ingress-dev
|
||||||
|
namespace: gohorsejobshml
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt-dns
|
||||||
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
||||||
|
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
|
||||||
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
||||||
|
spec:
|
||||||
|
ingressClassName: traefik
|
||||||
|
rules:
|
||||||
|
- host: b-hml.gohorsejobs.com
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: gohorse-backoffice-service
|
||||||
|
port:
|
||||||
|
number: 3001
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- b-hml.gohorsejobs.com
|
||||||
|
secretName: gohorse-backoffice-b-hml-cert
|
||||||
13
k8s/hml/backoffice-service-hml.yaml
Normal file
13
k8s/hml/backoffice-service-hml.yaml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: gohorse-backoffice-service
|
||||||
|
namespace: gohorsejobshml
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: gohorse-backoffice
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
port: 3001
|
||||||
|
targetPort: 8521
|
||||||
|
type: ClusterIP
|
||||||
35
k8s/prd/backoffice-deployment.yaml
Normal file
35
k8s/prd/backoffice-deployment.yaml
Normal file
|
|
@ -0,0 +1,35 @@
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: gohorse-backoffice
|
||||||
|
namespace: gohorsejobs
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: gohorse-backoffice
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: gohorse-backoffice
|
||||||
|
env: development
|
||||||
|
spec:
|
||||||
|
imagePullSecrets:
|
||||||
|
- name: harbor-registry
|
||||||
|
containers:
|
||||||
|
- name: backoffice
|
||||||
|
# Imagem apontando para o projeto correto no Harbor
|
||||||
|
image: in.gohorsejobs.com/gohorsejobs-backoffice/backoffice:latest
|
||||||
|
imagePullPolicy: Always
|
||||||
|
ports:
|
||||||
|
- containerPort: 8521
|
||||||
|
envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: backend-secrets
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
memory: "128Mi"
|
||||||
|
cpu: "100m"
|
||||||
|
limits:
|
||||||
|
memory: "512Mi"
|
||||||
|
cpu: "500m"
|
||||||
27
k8s/prd/backoffice-ingress-dev.yaml
Normal file
27
k8s/prd/backoffice-ingress-dev.yaml
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
name: gohorse-backoffice-ingress-dev
|
||||||
|
namespace: gohorsejobs
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt-dns
|
||||||
|
external-dns.alpha.kubernetes.io/cloudflare-proxied: "true"
|
||||||
|
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
|
||||||
|
traefik.ingress.kubernetes.io/router.tls: "true"
|
||||||
|
spec:
|
||||||
|
ingressClassName: traefik
|
||||||
|
rules:
|
||||||
|
- host: b-prd.gohorsejobs.com
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: gohorse-backoffice-service
|
||||||
|
port:
|
||||||
|
number: 3001
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- b-prd.gohorsejobs.com
|
||||||
|
secretName: gohorse-backoffice-b-prd-cert
|
||||||
13
k8s/prd/backoffice-service.yaml
Normal file
13
k8s/prd/backoffice-service.yaml
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: gohorse-backoffice-service
|
||||||
|
namespace: gohorsejobs
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: gohorse-backoffice
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
port: 3001
|
||||||
|
targetPort: 8521
|
||||||
|
type: ClusterIP
|
||||||
Loading…
Reference in a new issue