diff --git a/apps/immich/config/example.env b/apps/immich/config/example.env index c78df0d..c546c07 100644 --- a/apps/immich/config/example.env +++ b/apps/immich/config/example.env @@ -1,32 +1,21 @@ -# Config IMMICH_DOMAIN=immich.$DOMAIN IMMICH_STORAGE=100Gi IMMICH_CACHE_STORAGE=10Gi TZ=UTC - -# Docker Images IMMICH_SERVER_IMAGE=ghcr.io/immich-app/immich-server:release IMMICH_ML_IMAGE=ghcr.io/immich-app/immich-machine-learning:release - -# Database Configuration DB_HOSTNAME=postgres.postgres DB_PORT=5432 DB_USERNAME=immich DB_DATABASE_NAME=immich POSTGRES_ADMIN_USER=$POSTGRES_USER - -# Redis Configuration REDIS_HOSTNAME=redis.redis REDIS_PORT=6379 - -# Machine Learning Configuration MACHINE_LEARNING_WORKERS=1 MACHINE_LEARNING_MODEL_TTL=300 - -# Immich Configuration IMMICH_ENV=production IMMICH_LOG_LEVEL=info -# Secrets (populate these in config.env and secrets.env) +# Secrets DB_PASSWORD= -POSTGRES_ADMIN_PASSWORD=$POSTGRES_PASSWORD \ No newline at end of file +POSTGRES_ADMIN_PASSWORD=$POSTGRES_PASSWORD diff --git a/infrastructure_setup/docker-registry/config.env b/infrastructure_setup/docker-registry/config.env deleted file mode 100644 index 7a5d913..0000000 --- a/infrastructure_setup/docker-registry/config.env +++ /dev/null @@ -1,2 +0,0 @@ -DOCKER_REGISTRY_STORAGE=10Gi -DOCKER_REGISTRY_HOST=docker-registry.internal.cloud.payne.io diff --git a/infrastructure_setup/docker-registry/config/example.env b/infrastructure_setup/docker-registry/config/example.env new file mode 100644 index 0000000..4996d40 --- /dev/null +++ b/infrastructure_setup/docker-registry/config/example.env @@ -0,0 +1,2 @@ +DOCKER_REGISTRY_STORAGE=10Gi +DOCKER_REGISTRY_HOST=docker-registry.$INTERNAL_DOMAIN diff --git a/infrastructure_setup/docker-registry/kustomization.yaml b/infrastructure_setup/docker-registry/kustomization.yaml index 457c23d..adc14f4 100644 --- a/infrastructure_setup/docker-registry/kustomization.yaml +++ b/infrastructure_setup/docker-registry/kustomization.yaml @@ -15,7 +15,7 @@ resources: configMapGenerator: - name: docker-registry-config envs: - - config.env + - config/config.env replacements: - source: kind: ConfigMap