4549a213e2
- Created `local_core.yml` for Traefik service configuration with multiple entry points and middleware settings. - Added `services-all.yml` to define multiple services including API server, PostgreSQL, MinIO, Neo4j, and others with Traefik routing. - Implemented Kubernetes deployment files for API server, Dozzle, MinIO, OSRM backend, PostgreSQL, SearxNG, and Whoami services. - Configured persistent volume claims for MinIO, PostgreSQL, and SearxNG. - Set up Traefik routing rules for all services to enable HTTPS and middleware for security.
20 lines
388 B
YAML
20 lines
388 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
annotations:
|
|
kompose.cmd: kompose convert -f services.yml
|
|
kompose.version: 1.34.0 (HEAD)
|
|
labels:
|
|
io.kompose.service: minio-common
|
|
name: minio-common
|
|
spec:
|
|
ports:
|
|
- name: "9000"
|
|
port: 9000
|
|
targetPort: 9000
|
|
- name: "9001"
|
|
port: 9001
|
|
targetPort: 9001
|
|
selector:
|
|
io.kompose.service: minio-common
|