Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
a06201aa
Unverified
Commit
a06201aa
authored
May 09, 2022
by
Martin Lindner
Committed by
GitHub
May 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(helm): add support for spec.ingressClassName to Ingress template (#5202)
parent
0fcc0839
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
README.md
dev/helm/README.md
+1
-0
ingress.yaml
dev/helm/templates/ingress.yaml
+3
-0
values.yaml
dev/helm/values.yaml
+1
-0
No files found.
dev/helm/README.md
View file @
a06201aa
...
...
@@ -108,6 +108,7 @@ The following table lists the configurable parameters of the Wiki.js chart and t
|
`volumeMounts`
| Volume mounts for Wiki.js container |
`[]`
|
|
`volumes`
| Volumes for Wiki.js Pod |
`[]`
|
|
`ingress.enabled`
| Enable ingress controller resource |
`false`
|
|
`ingress.className`
| Ingress class name |
`""`
|
|
`ingress.annotations`
| Ingress annotations |
`{}`
|
|
`ingress.hosts`
| List of ingress rules |
`[{"host": "wiki.local", "paths": ["/"]}]`
|
|
`ingress.tls`
| Ingress TLS configuration |
`[]`
|
...
...
dev/helm/templates/ingress.yaml
View file @
a06201aa
...
...
@@ -23,6 +23,9 @@ metadata:
{{
- toYaml . | nindent 4
}}
{{
- end
}}
spec
:
{{
- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)
}}
ingressClassName
:
{{
.Values.ingress.className
}}
{{
- end
}}
{{
- if .Values.ingress.tls
}}
tls
:
{{
- range .Values.ingress.tls
}}
...
...
dev/helm/values.yaml
View file @
a06201aa
...
...
@@ -54,6 +54,7 @@ service:
ingress
:
enabled
:
true
className
:
"
"
annotations
:
{}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment