beta.spearhead.rocks now for the beta branch (#45)

Reviewed-on: #45
Co-authored-by: dutchie031 <timrorije@gmail.com>
This commit was merged in pull request #45.
This commit is contained in:
2026-08-30 11:49:52 +00:00
committed by dutchie031
parent 5601091b8f
commit 2bce1985e2
6 changed files with 55 additions and 31 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ spec:
type: RuntimeDefault
containers:
- name: {{ .Values.app }}
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: Always
ports:
- containerPort: {{ .Values.ports.containerPort }}
+10 -17
View File
@@ -14,7 +14,7 @@ spec:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ .Values.app }}-ingress
name: "{{ .Values.app }}-ingress"
namespace: spearhead-docs
annotations:
kubernetes.io/tls-acme: "true"
@@ -22,28 +22,21 @@ metadata:
spec:
ingressClassName: nginx
rules:
- host: spearhead.dutchie031.com
{{- range .Values.ingress.hosts }}
- host: {{ . }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ .Values.app }}
name: {{ $.Values.app }}
port:
number: {{ .Values.ports.servicePort }}
- host: spearhead.rocks
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ .Values.app }}
port:
number: {{ .Values.ports.servicePort }}
number: {{ $.Values.ports.servicePort }}
{{- end }}
tls:
- hosts:
- spearhead.dutchie031.com
- spearhead.rocks
secretName: spearhead-docs-tls
{{- range .Values.ingress.hosts }}
- {{ . }}
{{- end }}
secretName: "{{ .Values.app }}-docs-tls"