- 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
30 lines
453 B
YAML
30 lines
453 B
YAML
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: immich-server
|
|
namespace: immich
|
|
labels:
|
|
app: immich-server
|
|
spec:
|
|
ports:
|
|
- port: 3001
|
|
targetPort: 2283
|
|
selector:
|
|
app: immich
|
|
component: server
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: immich-machine-learning
|
|
namespace: immich
|
|
labels:
|
|
app: immich-machine-learning
|
|
spec:
|
|
ports:
|
|
- port: 3003
|
|
selector:
|
|
app: immich
|
|
component: machine-learning
|