-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues.yaml
More file actions
98 lines (85 loc) · 3.45 KB
/
Copy pathvalues.yaml
File metadata and controls
98 lines (85 loc) · 3.45 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
# Default values for deploying Nginx Proxy Manager.
# This configuration file is written in YAML format.
# The settings here define the variables that will be used in your templates.
# The namespace where resources will be deployed (like Nginx Proxy Manager).
# The namespace is optional and can be set at installation time.
# If not provided, Helm will use the namespace from the `--namespace` flag or the default namespace.
namespaceOverride: ""
nginx:
# Specify how many replicas (instances) of Nginx Proxy Manager you want to run.
replicas: 1
image:
# The Docker image repository for Nginx Proxy Manager.
repository: jc21/nginx-proxy-manager
# The version/tag of the Docker image you want to use (e.g., 'latest').
tag: latest
service:
# Type of service for Nginx Proxy Manager (e.g., LoadBalancer, ClusterIP, NodePort).
type: LoadBalancer
# External IPs that will be assigned to the Nginx service. Leave this empty to skip.
externalIPs: []
ports:
# Port for HTTP traffic (default is 80).
http: 80
# Port for HTTPS traffic (default is 443).
https: 443
# Port for the Nginx Proxy Manager web interface (default is 81).
webui: 81
# Persistent storage configuration for Nginx Proxy Manager data.
nginxPVC:
# Define the access mode for the persistent volume claim (PVC).
# Common options are: ReadWriteOnce (one pod can write), ReadOnlyMany (multiple pods can read), etc.
accessMode: ReadWriteOnce
# The amount of storage you want to allocate for the PVC.
storage: 5Gi
# Storage class to use for the PVC.
storageClassName: ""
mariadb:
# Specify how many replicas of MariaDB you want to run.
replicas: 1
image:
# The Docker image repository for MariaDB.
repository: jc21/mariadb-aria
# The version/tag of the Docker image you want to use (e.g., 'latest').
tag: latest
env:
# Root password for the MariaDB root user (important for securing access).
rootPassword: root_pass_changeme
# The name of the database that will be created for Nginx Proxy Manager to use.
database: proxy-manager
# The username for the MariaDB application user account.
user: proxy_manager_user
# The password for the MariaDB application user account.
password: user_pass_changeme
# Existing secret for MariaDB credentials.
# Example secret:
# apiVersion: v1
# kind: Secret
# metadata:
# name: my-mariadb-secret
# namespace: nginxproxymanager # Must match the namespace where Nginx Proxy Manager is deployed.
# type: Opaque
# stringData:
# mysql-root-password: myVerySecureRootPassword
# mysql-user: my-proxy-manager-user
# mysql-user-password: myVerySecureUserPassword
existingSecret: ""
service:
# Type of service for MariaDB (e.g., ClusterIP, LoadBalancer, NodePort).
type: ClusterIP
# Persistent storage configuration for MariaDB data.
mariadbPVC:
# Define the access mode for the persistent volume claim (PVC).
accessMode: ReadWriteOnce
# The amount of storage you want to allocate for MariaDB data.
storage: 1Gi
# Storage class to use for the PVC.
storageClassName: ""
# Persistent storage configuration for storing Let's Encrypt certificates.
letsencryptPVC:
# Define the access mode for the persistent volume claim (PVC).
accessMode: ReadWriteOnce
# The amount of storage you want to allocate for Let's Encrypt certificates.
storage: 1Gi
# Storage class to use for the PVC.
storageClassName: ""