Files
wild-cloud/apps
Paul Payne 5cbfb9c645 Add Immich application deployment files and configuration
- Create README.md for Immich app description
- Add example.env for configuration settings
- Implement deployment.yaml for Immich server and microservices
- Set up ingress.yaml for public access with DNS annotations
- Introduce db-init-job.yaml for database initialization
- Configure kustomization.yaml for resource management
- Define manifest.yaml for Immich app installation details
- Create namespace.yaml for isolating Immich resources
- Establish PVCs in pvc.yaml for storage management
- Set up services in service.yaml for server and machine learning components
- Update CoreDNS custom config to handle AAAA records
2025-05-27 17:19:41 -07:00
..
2025-05-18 15:27:37 -07:00
2025-05-18 15:26:24 -07:00
2025-05-18 15:26:14 -07:00

Sovereign Cloud-maintained apps

Usage

generate-config <app-name> kubectl apply -k apps/<app-name>

Best Practices

  • *.yaml, not *.yml.

  • Keep the service and deployment names the same as the app for easy DNS lookup.

  • A starting kustomization.yaml for every app:

    apiVersion: kustomize.config.k8s.io/v1beta1
    kind: Kustomization
    namespace: postgres
    labels:
      - includeSelectors: true
        pairs:
          app: <app>
          managedBy: kustomize
          partOf: sovereign-cloud