diff --git a/apps/ignis/chart/templates/httproute.yaml b/apps/ignis/chart/templates/httproute.yaml index b99df77..d974dc9 100644 --- a/apps/ignis/chart/templates/httproute.yaml +++ b/apps/ignis/chart/templates/httproute.yaml @@ -10,7 +10,9 @@ spec: - name: envoy-gateway namespace: envoy-gateway-system hostnames: - - {{ .Values.httpRoute.hostname | quote }} + {{- range .Values.httpRoute.hostnames }} + - {{ . | quote }} + {{- end }} rules: - matches: - path: diff --git a/apps/ignis/chart/values.yaml b/apps/ignis/chart/values.yaml index b9731d0..78e77a1 100644 --- a/apps/ignis/chart/values.yaml +++ b/apps/ignis/chart/values.yaml @@ -37,4 +37,6 @@ persistence: httpRoute: enabled: true - hostname: ignis.fireflylab.local + hostnames: + - ignis.fireflylab.local + - ignis.fireflylab.cc diff --git a/apps/ignis/docker-compose.yml b/apps/ignis/docker-compose.yml deleted file mode 100644 index 24a11b3..0000000 --- a/apps/ignis/docker-compose.yml +++ /dev/null @@ -1,16 +0,0 @@ -services: - ignis: - image: nobbe/ignis:latest - ports: - - "8080:8080" - environment: - - PUID=1000 - - PGID=1000 - volumes: - - ./vaults:/vaults - - ./data:/app/data - - obsidian-app:/app/obsidian-app - restart: unless-stopped - -volumes: - obsidian-app: