update chart

This commit is contained in:
2026-08-03 01:13:27 +07:00
parent 80d181df68
commit 689ed82d5a
4 changed files with 26 additions and 0 deletions
@@ -14,6 +14,14 @@ spec:
labels: labels:
app: {{ .Release.Name }} app: {{ .Release.Name }}
spec: spec:
# Default ndots:5 forces every external FQDN lookup (npm registry, GitHub
# releases) through 4 failed cluster-search-domain attempts before the
# bare name resolves — observed 6-12s DNS delays that broke the
# obsidian-headless install (its own request timeout is shorter than that).
dnsConfig:
options:
- name: ndots
value: "1"
containers: containers:
- name: ignis - name: ignis
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+1
View File
@@ -3,6 +3,7 @@ kind: Service
metadata: metadata:
name: {{ .Release.Name }} name: {{ .Release.Name }}
spec: spec:
type: {{ .Values.service.type }}
selector: selector:
app: {{ .Release.Name }} app: {{ .Release.Name }}
ports: ports:
+1
View File
@@ -8,6 +8,7 @@ image:
replicaCount: 1 replicaCount: 1
service: service:
type: ClusterIP
port: 8080 port: 8080
env: env:
+16
View File
@@ -0,0 +1,16 @@
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: