@@ -51,42 +51,42 @@ The command removes all the Kubernetes components associated with the chart and
51
51
52
52
### Common parameters
53
53
54
- | Name | Type | Description | Default |
55
- | ------------------- | ------ | ------------------------------------------------------------------------- | ------- |
56
- | ` kubeVersion ` | string | Override Kubernetes version | ` nil ` |
57
- | ` nameOverride ` | string | Partially override names.fullname | ` nil ` |
58
- | ` fullnameOverride ` | string | Fully override names.fullname | ` nil ` |
59
- | ` commonLabels ` | object | Labels to add to all deployed objects | ` {} ` |
60
- | ` commonAnnotations ` | object | Annotations to add to all deployed objects | ` {} ` |
61
- | ` networkPort ` | int | Deployment container, Deployment livenessProbe, Ingress, and Service port | ` 3000 ` |
54
+ | Name | Type | Description | Default |
55
+ | ------------------ | ------ | ------------------------------------------------------------------------- | ------- |
56
+ | ` kubeVersion ` | string | Override Kubernetes version | ` nil ` |
57
+ | ` nameOverride ` | string | Partially override names.fullname | ` nil ` |
58
+ | ` fullnameOverride ` | string | Fully override names.fullname | ` nil ` |
59
+ | ` commonLabels ` | object | Labels to add to all deployed objects | ` {} ` |
60
+ | ` networkPort ` | int | Deployment container, Deployment livenessProbe, Ingress, and Service port | ` 3000 ` |
62
61
63
62
64
63
### One-Time Secret configuration parameters
65
64
66
- | Name | Type | Description | Default |
67
- | ---------------------------------------- | ------- | ----------------------------------------------------------------------------------- | --------------------------- |
68
- | ` configuration.host ` | string | OTS host (the domain you will access OTS at) | ` "localhost" ` |
69
- | ` configuration.ssl ` | boolean | Enable SSL (HTTPS) support | ` false ` |
70
- | ` configuration.baseRedisUrl ` | string | Base Redis URL (see values.yaml for more info) | ` "" ` |
71
- | ` configuration.colonels ` | string | OTS account created with this email is automatically considered admin of the system | ` "" ` |
72
- | ` configuration.secret ` | string | Used to encrypt OTS secrets - don't forget this, save it somewhere safe | ` "CHANGEME" ` |
73
- | ` configuration.emailer.sendgridEnabled ` | boolean | Use SendGrid to allow OTS the ability to send emails | ` false ` |
74
- | ` configuration.emailer.smtpEnabled ` | boolean | Use SMTP to allow OTS the ability to send emails | ` false ` |
75
- | ` configuration.emailer.from ` | string | SendGrid/SMTP email sender "from" email address | ` "" ` |
76
- | ` configuration.emailer.sendgridAccount ` | string | SendGrid account login | ` "CHANGEME" ` |
77
- | ` configuration.emailer.sendgridPassword ` | string | SendGrid account password | ` "CHANGEME" ` |
78
- | ` configuration.emailer.sendgridFromName ` | string | SendGrid email sender "From" name | ` "CHANGEME" ` |
79
- | ` configuration.emailer.sendgridBcc ` | string | SendGrid email BCC field | ` nil ` |
80
- | ` configuration.emailer.smtpHost ` | string | SMTP hostname | ` "localhost" ` |
81
- | ` configuration.emailer.smtpPort ` | int | SMTP port | ` 587 ` |
82
- | ` configuration.emailer.smtpTls ` | boolean | Enable/Disable TLS for SMTP | ` false ` |
83
- | ` configuration.emailer.smtpUser ` | string | SMTP username | ` nil ` |
84
- | ` configuration.emailer.smtpPass ` | string | SMTP password | ` nil ` |
85
- | ` configuration.emailer.smtpAuth ` | string | SMTP authentication type. Allowed values: ` plain ` or ` login ` | ` nil ` |
86
- | ` configuration.incoming.enabled ` | boolean | Intended for use by IT support teams who need someone to send them sensitive info | ` false ` |
87
- | ` configuration.incoming.email ` | string | Where the secret link is sent | ` "CHANGEME@example.com" ` |
88
- | ` configuration.incoming.passphrase ` | string | Used to protect the "secret" | ` "CHANGEME" ` |
89
- | ` configuration.incoming.regex ` | string | Used to ensure the ticket number is valid | ` '\A[a-zA-Z0-9]{6}\z' ` |
65
+ | Name | Type | Description | Default |
66
+ | ---------------------------------------- | ------- | ----------------------------------------------------------------------------------- | ------------------------ |
67
+ | ` configuration.host ` | string | OTS host (the domain you will access OTS at) | ` "localhost" ` |
68
+ | ` configuration.hostPort ` | int | OTS host port (the HTTP port used to access OTS) | ` nil ` |
69
+ | ` configuration.ssl ` | boolean | Enable SSL (HTTPS) support | ` false ` |
70
+ | ` configuration.baseRedisUrl ` | string | Base Redis URL (see values.yaml for more info) | ` "" ` |
71
+ | ` configuration.colonels ` | string | OTS account created with this email is automatically considered admin of the system | ` "" ` |
72
+ | ` configuration.secret ` | string | Used to encrypt OTS secrets - don't forget this, save it somewhere safe | ` "CHANGEME" ` |
73
+ | ` configuration.emailer.sendgridEnabled ` | boolean | Use SendGrid to allow OTS the ability to send emails | ` false ` |
74
+ | ` configuration.emailer.smtpEnabled ` | boolean | Use SMTP to allow OTS the ability to send emails | ` false ` |
75
+ | ` configuration.emailer.from ` | string | SendGrid/SMTP email sender "from" email address | ` "" ` |
76
+ | ` configuration.emailer.sendgridAccount ` | string | SendGrid account login | ` "CHANGEME" ` |
77
+ | ` configuration.emailer.sendgridPassword ` | string | SendGrid account password | ` "CHANGEME" ` |
78
+ | ` configuration.emailer.sendgridFromName ` | string | SendGrid email sender "From" name | ` "CHANGEME" ` |
79
+ | ` configuration.emailer.sendgridBcc ` | string | SendGrid email BCC field | ` nil ` |
80
+ | ` configuration.emailer.smtpHost ` | string | SMTP hostname | ` "localhost" ` |
81
+ | ` configuration.emailer.smtpPort ` | int | SMTP port | ` 587 ` |
82
+ | ` configuration.emailer.smtpTls ` | boolean | Enable/Disable TLS for SMTP | ` false ` |
83
+ | ` configuration.emailer.smtpUser ` | string | SMTP username | ` nil ` |
84
+ | ` configuration.emailer.smtpPass ` | string | SMTP password | ` nil ` |
85
+ | ` configuration.emailer.smtpAuth ` | string | SMTP authentication type. Allowed values: ` plain ` or ` login ` | ` nil ` |
86
+ | ` configuration.incoming.enabled ` | boolean | Intended for use by IT support teams who need someone to send them sensitive info | ` false ` |
87
+ | ` configuration.incoming.email ` | string | Where the secret link is sent | ` "CHANGEME@example.com" ` |
88
+ | ` configuration.incoming.passphrase ` | string | Used to protect the "secret" | ` "CHANGEME" ` |
89
+ | ` configuration.incoming.regex ` | string | Used to ensure the ticket number is valid | ` '\A[a-zA-Z0-9]{6}\z' ` |
90
90
91
91
92
92
### Deployment parameters
@@ -116,10 +116,10 @@ The command removes all the Kubernetes components associated with the chart and
116
116
117
117
### Service parameters
118
118
119
- | Name | Type | Description | Default |
120
- | ---------------| ------- | - ------------------------------------------ | ------------ |
121
- | ` service.port ` | int | OTS Service port (overrides ` networkPort ` ) | ` nil ` |
122
- | ` service.type ` | string | OTS Service Type | ` "NodePort" ` |
119
+ | Name | Type | Description | Default |
120
+ | ---------------| ------ | ------------------------------------------ | ------------ |
121
+ | ` service.port ` | int | OTS Service port (overrides ` networkPort ` ) | ` nil ` |
122
+ | ` service.type ` | string | OTS Service Type | ` "NodePort" ` |
123
123
124
124
125
125
### Ingress parameters
0 commit comments