Files
bakery-ia/skaffold.yaml

622 lines
20 KiB
YAML
Raw Normal View History

2025-09-27 22:55:42 +02:00
apiVersion: skaffold/v2beta28
kind: Config
metadata:
2025-10-01 16:25:53 +02:00
name: bakery-ia
2025-09-27 22:55:42 +02:00
2026-01-19 16:31:11 +01:00
# =============================================================================
# BUILD CONFIGURATION
# =============================================================================
# Environment-configurable base images via Docker ARG:
# - BASE_REGISTRY: Registry URL for base images
# - PYTHON_IMAGE: Python image name and tag
#
2026-01-20 22:05:10 +01:00
# Dev (default): BASE_REGISTRY=localhost:5000, PYTHON_IMAGE=python_3_11_slim
2026-01-21 23:16:19 +01:00
# Prod: BASE_REGISTRY=registry.bakewise.ai/bakery-admin, PYTHON_IMAGE=python:3.11-slim
2026-01-19 16:31:11 +01:00
#
# Usage:
# skaffold dev # Uses dev settings (local registry)
# skaffold dev -p debug # Dev with port forwarding
# skaffold run -p prod # Production build with Docker Hub
2026-01-20 10:39:40 +01:00
# skaffold run -p gitea # Gitea registry mode (internal cluster)
2026-01-19 16:31:11 +01:00
# BASE_REGISTRY=ghcr.io/myorg skaffold run -p prod # Production with custom registry
# =============================================================================
2025-09-27 22:55:42 +02:00
build:
local:
push: false
2025-09-28 13:54:28 +02:00
tagPolicy:
envTemplate:
template: "dev"
2025-09-27 22:55:42 +02:00
artifacts:
# Gateway
- image: bakery/gateway
context: .
docker:
dockerfile: gateway/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
2026-01-19 16:31:11 +01:00
# Frontend (no Python base image needed)
2025-09-27 22:55:42 +02:00
- image: bakery/dashboard
context: ./frontend
docker:
dockerfile: Dockerfile.kubernetes
2026-01-19 16:31:11 +01:00
# Microservices - all use configurable Python base image
2025-09-27 22:55:42 +02:00
- image: bakery/auth-service
context: .
docker:
dockerfile: services/auth/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/tenant-service
context: .
docker:
dockerfile: services/tenant/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/training-service
context: .
docker:
dockerfile: services/training/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/forecasting-service
context: .
docker:
dockerfile: services/forecasting/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/sales-service
context: .
docker:
dockerfile: services/sales/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/external-service
context: .
docker:
dockerfile: services/external/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/notification-service
context: .
docker:
dockerfile: services/notification/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/inventory-service
context: .
docker:
dockerfile: services/inventory/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/recipes-service
context: .
docker:
dockerfile: services/recipes/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/suppliers-service
context: .
docker:
dockerfile: services/suppliers/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/pos-service
context: .
docker:
dockerfile: services/pos/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/orders-service
context: .
docker:
dockerfile: services/orders/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/production-service
context: .
docker:
dockerfile: services/production/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
- image: bakery/alert-processor
context: .
docker:
dockerfile: services/alert_processor/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-09-27 22:55:42 +02:00
2025-10-06 15:27:01 +02:00
- image: bakery/demo-session-service
context: .
docker:
dockerfile: services/demo_session/Dockerfile
2026-01-19 16:31:11 +01:00
buildArgs:
BASE_REGISTRY: localhost:5000
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: python_3_11_slim
2025-10-06 15:27:01 +02:00
2025-09-27 22:55:42 +02:00
deploy:
kustomize:
paths:
2026-01-19 11:55:17 +01:00
- infrastructure/environments/dev/k8s-manifests
2025-11-06 11:04:50 +01:00
statusCheck: true
statusCheckDeadlineSeconds: 600
kubectl:
hooks:
before:
- host:
command: ["sh", "-c", "echo '======================================'"]
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo 'Bakery IA Secure Deployment'"]
2025-11-06 11:04:50 +01:00
- host:
command: ["sh", "-c", "echo '======================================'"]
- host:
command: ["sh", "-c", "echo ''"]
- host:
command: ["sh", "-c", "echo 'Applying security configurations...'"]
- host:
command: ["sh", "-c", "echo ' - TLS certificates for PostgreSQL and Redis'"]
- host:
command: ["sh", "-c", "echo ' - Strong passwords (32-character)'"]
- host:
command: ["sh", "-c", "echo ' - PersistentVolumeClaims for data persistence'"]
- host:
command: ["sh", "-c", "echo ' - pgcrypto extension for encryption at rest'"]
- host:
command: ["sh", "-c", "echo ' - PostgreSQL audit logging'"]
- host:
command: ["sh", "-c", "echo ''"]
- host:
2026-01-19 16:31:11 +01:00
command: ["kubectl", "apply", "-f", "infrastructure/environments/common/configs/secrets.yaml"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["kubectl", "apply", "-f", "infrastructure/platform/storage/postgres/secrets/postgres-tls-secret.yaml"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["kubectl", "apply", "-f", "infrastructure/platform/storage/redis/secrets/redis-tls-secret.yaml"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["kubectl", "apply", "-f", "infrastructure/platform/storage/postgres/configs/postgres-init-config.yaml"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["kubectl", "apply", "-f", "infrastructure/platform/storage/postgres/configs/postgres-logging-config.yaml"]
2025-11-06 11:04:50 +01:00
- host:
command: ["sh", "-c", "echo ''"]
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo 'Security configurations applied'"]
2025-11-06 11:04:50 +01:00
- host:
command: ["sh", "-c", "echo ''"]
after:
- host:
command: ["sh", "-c", "echo ''"]
- host:
command: ["sh", "-c", "echo '======================================'"]
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo 'Deployment Complete!'"]
2025-11-06 11:04:50 +01:00
- host:
command: ["sh", "-c", "echo '======================================'"]
- host:
command: ["sh", "-c", "echo ''"]
- host:
command: ["sh", "-c", "echo 'Security Features Enabled:'"]
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo ' - TLS encryption for all database connections'"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo ' - Strong 32-character passwords'"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo ' - Persistent storage (PVCs) - no data loss'"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo ' - pgcrypto extension for column encryption'"]
2025-11-06 11:04:50 +01:00
- host:
2026-01-19 16:31:11 +01:00
command: ["sh", "-c", "echo ' - PostgreSQL audit logging enabled'"]
2025-11-06 11:04:50 +01:00
- host:
command: ["sh", "-c", "echo ''"]
- host:
command: ["sh", "-c", "echo 'Verify deployment:'"]
- host:
command: ["sh", "-c", "echo ' kubectl get pods -n bakery-ia'"]
- host:
command: ["sh", "-c", "echo ' kubectl get pvc -n bakery-ia'"]
- host:
command: ["sh", "-c", "echo ''"]
2026-01-19 16:31:11 +01:00
# =============================================================================
# PROFILES
# =============================================================================
2025-09-27 22:55:42 +02:00
profiles:
2026-01-19 16:31:11 +01:00
# ---------------------------------------------------------------------------
# DEV PROFILE - Local development with local registry
# ---------------------------------------------------------------------------
2025-09-27 22:55:42 +02:00
- name: dev
2025-10-01 16:25:53 +02:00
activation:
- command: dev
2025-09-27 22:55:42 +02:00
build:
local:
push: false
tagPolicy:
2025-09-28 13:54:28 +02:00
envTemplate:
template: "dev"
2025-09-27 22:55:42 +02:00
deploy:
kustomize:
paths:
2026-01-19 11:55:17 +01:00
- infrastructure/environments/dev/k8s-manifests
2025-09-27 22:55:42 +02:00
2026-01-19 16:31:11 +01:00
# ---------------------------------------------------------------------------
# DEBUG PROFILE - Dev with port forwarding for debugging
# ---------------------------------------------------------------------------
2025-09-27 22:55:42 +02:00
- name: debug
2025-10-01 16:25:53 +02:00
activation:
- command: debug
2025-09-27 22:55:42 +02:00
build:
local:
push: false
tagPolicy:
2025-10-01 16:25:53 +02:00
envTemplate:
template: "dev"
2025-09-27 22:55:42 +02:00
deploy:
kustomize:
paths:
2026-01-19 11:55:17 +01:00
- infrastructure/environments/dev/k8s-manifests
2025-09-27 22:55:42 +02:00
portForward:
- resourceType: service
resourceName: frontend-service
namespace: bakery-ia
port: 3000
localPort: 3000
- resourceType: service
resourceName: gateway-service
namespace: bakery-ia
port: 8000
localPort: 8000
- resourceType: service
resourceName: auth-service
namespace: bakery-ia
port: 8000
2025-10-01 16:25:53 +02:00
localPort: 8001
2026-01-19 16:31:11 +01:00
# ---------------------------------------------------------------------------
# PROD PROFILE - Production deployment with Docker Hub base images
# ---------------------------------------------------------------------------
# Usage:
# skaffold run -p prod # Default Docker Hub
# BASE_REGISTRY=ghcr.io/myorg skaffold run -p prod # Custom registry
# ---------------------------------------------------------------------------
2025-10-01 16:25:53 +02:00
- name: prod
build:
local:
2026-01-19 16:31:11 +01:00
push: true
2025-10-01 16:25:53 +02:00
tagPolicy:
gitCommit:
variant: AbbrevCommitSha
2026-01-19 16:31:11 +01:00
artifacts:
# Gateway - Production base images
- image: bakery/gateway
context: .
docker:
dockerfile: gateway/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: "python_3_11_slim"
2026-01-19 16:31:11 +01:00
# Frontend
- image: bakery/dashboard
context: ./frontend
docker:
dockerfile: Dockerfile.kubernetes
2026-01-21 23:16:19 +01:00
# Microservices - Production base images (registry.bakewise.ai/bakery-admin/python_3.11-slim)
2026-01-19 16:31:11 +01:00
- image: bakery/auth-service
context: .
docker:
dockerfile: services/auth/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: "python_3_11_slim"
2026-01-19 16:31:11 +01:00
- image: bakery/tenant-service
context: .
docker:
dockerfile: services/tenant/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 22:05:10 +01:00
PYTHON_IMAGE: "python_3_11_slim"
2026-01-19 16:31:11 +01:00
- image: bakery/training-service
context: .
docker:
dockerfile: services/training/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/forecasting-service
context: .
docker:
dockerfile: services/forecasting/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/sales-service
context: .
docker:
dockerfile: services/sales/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/external-service
context: .
docker:
dockerfile: services/external/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/notification-service
context: .
docker:
dockerfile: services/notification/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/inventory-service
context: .
docker:
dockerfile: services/inventory/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/recipes-service
context: .
docker:
dockerfile: services/recipes/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/suppliers-service
context: .
docker:
dockerfile: services/suppliers/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/pos-service
context: .
docker:
dockerfile: services/pos/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/orders-service
context: .
docker:
dockerfile: services/orders/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/production-service
context: .
docker:
dockerfile: services/production/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/alert-processor
context: .
docker:
dockerfile: services/alert_processor/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/demo-session-service
context: .
docker:
dockerfile: services/demo_session/Dockerfile
buildArgs:
BASE_REGISTRY: docker.io
PYTHON_IMAGE: "python:3.11-slim"
2025-10-01 16:25:53 +02:00
deploy:
kustomize:
paths:
2026-01-19 16:31:11 +01:00
- infrastructure/environments/prod/k8s-manifests
2026-01-20 10:39:40 +01:00
# ---------------------------------------------------------------------------
# GITEA PROFILE - Development with Gitea registry for base images
2026-01-21 23:16:19 +01:00
# Uses external HTTPS registry URL (containerd requires HTTPS for auth)
2026-01-20 10:39:40 +01:00
# ---------------------------------------------------------------------------
# Usage:
# skaffold run -p gitea # Gitea registry mode
# skaffold dev -p gitea # Dev with Gitea registry
# ---------------------------------------------------------------------------
- name: gitea
build:
local:
push: true
tagPolicy:
envTemplate:
template: "gitea"
artifacts:
# Gateway - Gitea registry base images
- image: bakery/gateway
context: .
docker:
dockerfile: gateway/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
# Frontend
- image: bakery/dashboard
context: ./frontend
docker:
dockerfile: Dockerfile.kubernetes
# Microservices - Gitea registry base images
- image: bakery/auth-service
context: .
docker:
dockerfile: services/auth/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/tenant-service
context: .
docker:
dockerfile: services/tenant/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/training-service
context: .
docker:
dockerfile: services/training/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/forecasting-service
context: .
docker:
dockerfile: services/forecasting/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/sales-service
context: .
docker:
dockerfile: services/sales/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/external-service
context: .
docker:
dockerfile: services/external/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/notification-service
context: .
docker:
dockerfile: services/notification/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/inventory-service
context: .
docker:
dockerfile: services/inventory/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/recipes-service
context: .
docker:
dockerfile: services/recipes/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/procurement-service
context: .
docker:
dockerfile: services/procurement/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/distribution-service
context: .
docker:
dockerfile: services/distribution/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/production-service
context: .
docker:
dockerfile: services/production/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/pos-service
context: .
docker:
dockerfile: services/pos/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/orders-service
context: .
docker:
dockerfile: services/orders/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/alert-processor
context: .
docker:
dockerfile: services/alert_processor/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
- image: bakery/demo-session-service
context: .
docker:
dockerfile: services/demo_session/Dockerfile
buildArgs:
2026-01-21 23:16:19 +01:00
BASE_REGISTRY: registry.bakewise.ai/bakery-admin
2026-01-20 10:39:40 +01:00
PYTHON_IMAGE: "python:3.11-slim"
deploy:
kustomize:
paths:
- infrastructure/environments/dev/k8s-manifests