Run migrations on app start instead of separate job
- Migrations now run in Application.start/2 before starting services - Ecto's advisory locks prevent concurrent migrations in clustered setup - Simplified deployment - no separate migration job needed - Removed migrate-job.yaml manifest
This commit is contained in:
parent
66ed55d78e
commit
25b82848d6
3 changed files with 6 additions and 71 deletions
|
|
@ -43,18 +43,7 @@ deploy:
|
|||
script:
|
||||
- kubectl config get-contexts
|
||||
- kubectl config use-context graham/towerops:towerops
|
||||
# Run database migrations before deploying new version
|
||||
- |
|
||||
# Create unique job name using commit SHA (truncated to fit k8s naming limits)
|
||||
JOB_NAME="towerops-migrate-${CI_COMMIT_SHORT_SHA}"
|
||||
# Generate job manifest with correct image tag and unique name
|
||||
sed -e "s|IMAGE_TAG|${CI_COMMIT_SHA}|g" \
|
||||
-e "s|towerops-migrate-TIMESTAMP|${JOB_NAME}|g" \
|
||||
k8s/migrate-job.yaml | kubectl apply -f -
|
||||
# Wait for migration to complete (max 5 minutes)
|
||||
kubectl wait --for=condition=complete --timeout=5m job/${JOB_NAME} -n towerops
|
||||
echo "Database migration completed successfully"
|
||||
# Deploy new version
|
||||
# Deploy new version (migrations run on app start)
|
||||
- kubectl set image deployment/towerops towerops=$CI_REGISTRY_IMAGE:$CI_COMMIT_SHA -n towerops
|
||||
- kubectl rollout status deployment/towerops -n towerops --timeout=5m
|
||||
environment:
|
||||
|
|
|
|||
|
|
@ -1,59 +0,0 @@
|
|||
---
|
||||
apiVersion: batch/v1
|
||||
kind: Job
|
||||
metadata:
|
||||
name: towerops-migrate-TIMESTAMP
|
||||
namespace: towerops
|
||||
labels:
|
||||
app: towerops
|
||||
component: migration
|
||||
spec:
|
||||
# Clean up completed jobs after 1 hour
|
||||
ttlSecondsAfterFinished: 3600
|
||||
backoffLimit: 3
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: towerops
|
||||
component: migration
|
||||
spec:
|
||||
restartPolicy: Never
|
||||
imagePullSecrets:
|
||||
- name: gitlab-registry
|
||||
securityContext:
|
||||
runAsNonRoot: true
|
||||
runAsUser: 65534
|
||||
fsGroup: 65534
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
containers:
|
||||
- name: migrate
|
||||
image: registry.gitlab.com/graham/towerops:IMAGE_TAG
|
||||
command: ["/app/bin/towerops", "eval", "Towerops.Release.migrate()"]
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
runAsNonRoot: true
|
||||
runAsUser: 65534
|
||||
capabilities:
|
||||
drop:
|
||||
- ALL
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
env:
|
||||
- name: MIX_ENV
|
||||
value: "prod"
|
||||
- name: RELEASE_COOKIE
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: towerops-secrets
|
||||
key: RELEASE_COOKIE
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: towerops-db
|
||||
resources:
|
||||
requests:
|
||||
memory: "128Mi"
|
||||
cpu: "100m"
|
||||
limits:
|
||||
memory: "256Mi"
|
||||
cpu: "500m"
|
||||
|
|
@ -7,6 +7,11 @@ defmodule Towerops.Application do
|
|||
|
||||
@impl true
|
||||
def start(_type, _args) do
|
||||
# Run migrations on startup (Ecto handles locking for concurrent runs)
|
||||
unless Application.get_env(:towerops, Towerops.Repo)[:database] == "towerops_test" do
|
||||
Towerops.Release.migrate()
|
||||
end
|
||||
|
||||
topologies = Application.get_env(:libcluster, :topologies, [])
|
||||
|
||||
children = [
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue