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
8d420759
Unverified
Commit
8d420759
authored
Feb 05, 2022
by
Jordan JEAN
Committed by
GitHub
Feb 04, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore(helm): add volumes and volumeMounts chart values (#4714)
parent
b0852ac1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
0 deletions
+14
-0
README.md
dev/helm/README.md
+2
-0
deployment.yaml
dev/helm/templates/deployment.yaml
+8
-0
values.yaml
dev/helm/values.yaml
+4
-0
No files found.
dev/helm/README.md
View file @
8d420759
...
...
@@ -104,6 +104,8 @@ The following table lists the configurable parameters of the Wiki.js chart and t
|
`affinity`
| Affinity settings for wiki.js pod assignment |
`{}`
|
|
`schedulerName`
| Name of an alternate scheduler for wiki.js pod |
`nil`
|
|
`tolerations`
| Toleration labels for wiki.jsk pod assignment |
`[]`
|
|
`volumeMounts`
| Volume mounts for Wiki.js container |
`[]`
|
|
`volumes`
| Volumes for Wiki.js Pod |
`[]`
|
|
`ingress.enabled`
| Enable ingress controller resource |
`false`
|
|
`ingress.annotations`
| Ingress annotations |
`{}`
|
|
`ingress.hosts`
| List of ingress rules |
`[{"host": "wiki.local", "paths": ["/"]}]`
|
...
...
dev/helm/templates/deployment.yaml
View file @
8d420759
...
...
@@ -63,6 +63,10 @@ spec:
key
:
{{
template "wiki.postgresql.secretKey" .
}}
-
name
:
HA_ACTIVE
value
:
{{
.Values.replicaCount | int | le 2 | quote
}}
{{
- with .Values.volumeMounts
}}
volumeMounts
:
{{
- toYaml . | nindent 12
}}
{{
- end
}}
ports
:
-
name
:
http
containerPort
:
3000
...
...
@@ -85,3 +89,7 @@ spec:
tolerations
:
{{
- toYaml . | nindent 8
}}
{{
- end
}}
{{
- with .Values.volumes
}}
volumes
:
{{
- toYaml . | nindent 8
}}
{{
- end
}}
dev/helm/values.yaml
View file @
8d420759
...
...
@@ -85,6 +85,10 @@ tolerations: []
affinity
:
{}
volumeMounts
:
[]
volumes
:
[]
# This will allow us to install locales even without internet access using a initContainer & wikjs "sideloading"
sideload
:
enabled
:
false
...
...
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