feat: init
This commit is contained in:
commit
a81aaa023f
26
charts/dokuwiki/.helmignore
Normal file
26
charts/dokuwiki/.helmignore
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Patterns to ignore when building packages.
|
||||||
|
# This supports shell glob matching, relative path matching, and
|
||||||
|
# negation (prefixed with !). Only one pattern per line.
|
||||||
|
.DS_Store
|
||||||
|
# Common VCS dirs
|
||||||
|
.git/
|
||||||
|
.gitignore
|
||||||
|
.bzr/
|
||||||
|
.bzrignore
|
||||||
|
.hg/
|
||||||
|
.hgignore
|
||||||
|
.svn/
|
||||||
|
# Common backup files
|
||||||
|
*.swp
|
||||||
|
*.bak
|
||||||
|
*.tmp
|
||||||
|
*~
|
||||||
|
# Various IDEs
|
||||||
|
.project
|
||||||
|
.idea/
|
||||||
|
*.tmproj
|
||||||
|
.vscode/
|
||||||
|
# OWNERS file for Kubernetes
|
||||||
|
OWNERS
|
||||||
|
# helm-docs templates
|
||||||
|
*.gotmpl
|
||||||
28
charts/dokuwiki/Chart.yaml
Normal file
28
charts/dokuwiki/Chart.yaml
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
|
||||||
|
description: Helm chart for dokuwiki
|
||||||
|
name: dokuwiki
|
||||||
|
type: application
|
||||||
|
version: 0.1.14
|
||||||
|
kubeVersion: ">=1.16.0-0"
|
||||||
|
keywords:
|
||||||
|
- dokuwiki
|
||||||
|
home: https://scm.docker.cabillot.eu/web/dokuwiki-helm/
|
||||||
|
icon: https://scm.docker.cabillot.eu/repo-avatars/81-d8eec884cb05430e8ccdc486841bb431
|
||||||
|
sources:
|
||||||
|
- https://scm.docker.cabillot.eu/web/dokuwiki
|
||||||
|
maintainers:
|
||||||
|
- name: Julien Cabillot
|
||||||
|
email: dockerimages@cabillot.eu
|
||||||
|
|
||||||
|
# This is the version number of the application being deployed. This version number should be
|
||||||
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
|
# It is recommended to use it with quotes.
|
||||||
|
#appVersion: "1.16.0"
|
||||||
|
appVersion: "latest"
|
||||||
|
|
||||||
|
dependencies:
|
||||||
|
- name: common
|
||||||
|
repository: "https://scm.docker.cabillot.eu/perso/helm-library-common/raw/branch/master/"
|
||||||
|
version: 4.2.0
|
||||||
2
charts/dokuwiki/README.md
Normal file
2
charts/dokuwiki/README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# dokuwiki-helm
|
||||||
|
|
||||||
1
charts/dokuwiki/templates/NOTES.txt
Normal file
1
charts/dokuwiki/templates/NOTES.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
{{- include "common.notes.defaultNotes" . -}}
|
||||||
5
charts/dokuwiki/templates/common.yaml
Normal file
5
charts/dokuwiki/templates/common.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{{/* Make sure all variables are set properly */}}
|
||||||
|
{{- include "common.values.setup" . }}
|
||||||
|
|
||||||
|
{{/* Render the templates */}}
|
||||||
|
{{ include "common.all" . }}
|
||||||
71
charts/dokuwiki/values.yaml
Normal file
71
charts/dokuwiki/values.yaml
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
#
|
||||||
|
# IMPORTANT NOTE
|
||||||
|
#
|
||||||
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
||||||
|
# https://scm.docker.cabillot.eu/perso/helm-library-common
|
||||||
|
#
|
||||||
|
|
||||||
|
image:
|
||||||
|
repository: docker.io/jcabillot/dokuwiki
|
||||||
|
tag: ""
|
||||||
|
pullPolicy: Always
|
||||||
|
|
||||||
|
env:
|
||||||
|
TZ: America/New_York
|
||||||
|
|
||||||
|
service:
|
||||||
|
main:
|
||||||
|
ports:
|
||||||
|
http:
|
||||||
|
port: 8080
|
||||||
|
|
||||||
|
ingress:
|
||||||
|
main:
|
||||||
|
enabled: false
|
||||||
|
# Example
|
||||||
|
# hosts:
|
||||||
|
# - host: "yy.xx.zz"
|
||||||
|
# paths:
|
||||||
|
# - path: "/"
|
||||||
|
# tls:
|
||||||
|
# - secretName: "ip-tls"
|
||||||
|
# hosts:
|
||||||
|
# - "yy.xx.zz"
|
||||||
|
|
||||||
|
persistence:
|
||||||
|
config:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /var/www/html/conf
|
||||||
|
data:
|
||||||
|
enabled: true
|
||||||
|
mountPath: /var/www/html/data
|
||||||
|
|
||||||
|
probes:
|
||||||
|
liveness:
|
||||||
|
enabled: true
|
||||||
|
custom: true
|
||||||
|
spec:
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: http
|
||||||
|
scheme: HTTP
|
||||||
|
timeoutSeconds: 1
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
readiness:
|
||||||
|
enabled: true
|
||||||
|
custom: true
|
||||||
|
spec:
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: http
|
||||||
|
scheme: HTTP
|
||||||
|
timeoutSeconds: 1
|
||||||
|
periodSeconds: 10
|
||||||
|
successThreshold: 1
|
||||||
|
failureThreshold: 3
|
||||||
|
startup:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
automountServiceAccountToken: false
|
||||||
Loading…
x
Reference in New Issue
Block a user