Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.6
version: 1.1.0
annotations:
artifacthub.io/changes: |
- kind: fixed
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

die Changes bitte aktualisieren

Expand Down
2 changes: 1 addition & 1 deletion charts/gateway/templates/gateway.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- range .Values.gateway.https }}
- name: "https-{{ .host }}"
- name: "https-{{ .host | replace "*" "wildcard" | replace "_" "" }}"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sollten auch andere Sonderzeichen ersetzt werden?

Muss die Ersetzung hier im Chart passieren oder wäre es besser wenn bei der Verwendung ein eigener Name angegeben werden kann? gateway.https.nameOverride oder so? Das sieht mir schon sehr spezifisch aus. Liegt das sogar an der Implementation des Gateways welche Namen dort erlaubt sind? Aus YAML Sicht ist das einfach nur ein String 🤔

Copy link
Copy Markdown
Member

@DanielRaapDev DanielRaapDev Jan 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah OK, die Spec schreibt hier vor, dass nur so etwas wie DNS-Namen verwendet werden dürfen:

MaxLength: 253
MinLength: 1
Pattern: ^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$

Dann sollte das Replace alles für [^-a-z0-9.] ersetzen durch z.B. -.

hostname: "{{ .host }}"
port: 443
protocol: HTTPS
Expand Down