-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathvalues.yaml
More file actions
103 lines (97 loc) · 2.28 KB
/
values.yaml
File metadata and controls
103 lines (97 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Default values for wordpress.
tlsHostname: wordpress.example.com
deployment:
containerPorts:
- containerPort: 80
env:
wordpress_db_host: db00
wordpress_db_name: wordpress
wordpress_db_user: wordpress
tz: UTC
xenv:
- name: WORDPRESS_DB_PASSWORD
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_DB_PASSWORD
- name: WORDPRESS_AUTH_KEY
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_AUTH_KEY
- name: WORDPRESS_SECURE_AUTH_KEY
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_SECURE_AUTH_KEY
- name: WORDPRESS_LOGGED_IN_KEY
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_LOGGED_IN_KEY
- name: WORDPRESS_NONCE_KEY
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_NONCE_KEY
- name: WORDPRESS_AUTH_SALT
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_AUTH_SALT
- name: WORDPRESS_SECURE_AUTH_SALT
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_SECURE_AUTH_SALT
- name: WORDPRESS_NONCE_SALT
valueFrom:
secretKeyRef:
name: wordpress
key: WORDPRESS_NONCE_SALT
volumeMounts:
- mountPath: /usr/local/etc/php/conf.d/local-php.ini
name: init
subPath: local-php.ini
- mountPath: /var/www/html/wp-config.php
name: share
subPath: wordpress-ci/html/wp-config.php
- mountPath: /var/www/html/wp-content
name: share
subPath: wordpress/html/wp-content
volumes:
- name: init
configMap:
name: wordpress
- name: share
hostPath: { path: /var/lib/docker/k8s-volumes/share }
image:
repository: wordpress
pullPolicy: IfNotPresent
# tag: default
imagePullSecrets: [ name: regcred ]
nameOverride: ""
fullnameOverride: ""
serviceAccount: {}
service:
clusterIP: None
ports: [ port: 80 ]
type: ClusterIP
autoscaling:
enabled: false
configmap:
data:
local-php.ini: |
upload_max_filesize = 32M
post_max_size = 40M
authelia:
fqdn: authtotp.example.com
ip: 10.101.1.5
path: /(wp-login.php|wp-admin)
ingress:
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/enable-access-log: "false"
ingressTOTP:
enabled: true