apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization metadata: name: bakery-ia-base resources: # Base configuration - namespace.yaml - configmap.yaml - secrets.yaml - ingress-https.yaml # Additional configs - configs/postgres-init-config.yaml - configs/development-config.yaml # Migration jobs - migrations/auth-migration-job.yaml - migrations/tenant-migration-job.yaml - migrations/training-migration-job.yaml - migrations/forecasting-migration-job.yaml - migrations/sales-migration-job.yaml - migrations/external-migration-job.yaml - migrations/notification-migration-job.yaml - migrations/inventory-migration-job.yaml - migrations/recipes-migration-job.yaml - migrations/suppliers-migration-job.yaml - migrations/pos-migration-job.yaml - migrations/orders-migration-job.yaml - migrations/production-migration-job.yaml - migrations/alert-processor-migration-job.yaml # Infrastructure components - components/databases/redis.yaml - components/databases/rabbitmq.yaml - components/infrastructure/gateway-service.yaml # Database services - components/databases/auth-db.yaml - components/databases/tenant-db.yaml - components/databases/training-db.yaml - components/databases/forecasting-db.yaml - components/databases/sales-db.yaml - components/databases/external-db.yaml - components/databases/notification-db.yaml - components/databases/inventory-db.yaml - components/databases/recipes-db.yaml - components/databases/suppliers-db.yaml - components/databases/pos-db.yaml - components/databases/orders-db.yaml - components/databases/production-db.yaml - components/databases/alert-processor-db.yaml # Microservices - components/auth/auth-service.yaml - components/tenant/tenant-service.yaml - components/training/training-service.yaml - components/forecasting/forecasting-service.yaml - components/sales/sales-service.yaml - components/external/external-service.yaml - components/notification/notification-service.yaml - components/inventory/inventory-service.yaml - components/recipes/recipes-service.yaml - components/suppliers/suppliers-service.yaml - components/pos/pos-service.yaml - components/orders/orders-service.yaml - components/production/production-service.yaml - components/alert-processor/alert-processor-service.yaml # Frontend - components/frontend/frontend-service.yaml labels: - includeSelectors: true pairs: app.kubernetes.io/part-of: bakery-ia app.kubernetes.io/managed-by: kustomize images: - name: bakery/auth-service newTag: latest - name: bakery/tenant-service newTag: latest - name: bakery/training-service newTag: latest - name: bakery/forecasting-service newTag: latest - name: bakery/sales-service newTag: latest - name: bakery/external-service newTag: latest - name: bakery/notification-service newTag: latest - name: bakery/inventory-service newTag: latest - name: bakery/recipes-service newTag: latest - name: bakery/suppliers-service newTag: latest - name: bakery/pos-service newTag: latest - name: bakery/orders-service newTag: latest - name: bakery/production-service newTag: latest - name: bakery/alert-processor newTag: latest - name: bakery/gateway newTag: latest - name: bakery/dashboard newTag: latest