configmap-env.yaml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. apiVersion: v1
  2. kind: ConfigMap
  3. metadata:
  4. name: {{ include "mastodon.fullname" . }}-env
  5. labels:
  6. {{- include "mastodon.labels" . | nindent 4 }}
  7. data:
  8. {{- if .Values.postgresql.enabled }}
  9. DB_HOST: {{ template "mastodon.postgresql.fullname" . }}
  10. DB_PORT: "5432"
  11. {{- else }}
  12. DB_HOST: {{ .Values.postgresql.postgresqlHostname }}
  13. DB_PORT: {{ .Values.postgresql.postgresqlPort | default "5432" | quote }}
  14. {{- end }}
  15. DB_NAME: {{ .Values.postgresql.auth.database }}
  16. DB_POOL: {{ include "mastodon.maxDbPool" . }}
  17. DB_USER: {{ .Values.postgresql.auth.username }}
  18. {{- if .Values.postgresql.readReplica.hostname }}
  19. REPLICA_DB_HOST: {{ .Values.postgresql.readReplica.hostname }}
  20. {{- end }}
  21. {{- if .Values.postgresql.readReplica.port }}
  22. REPLICA_DB_PORT: {{ .Values.postgresql.readReplica.port }}
  23. {{- end }}
  24. {{- if .Values.postgresql.readReplica.auth.database }}
  25. REPLICA_DB_NAME: {{ .Values.postgresql.readReplica.auth.database }}
  26. {{- end }}
  27. {{- if .Values.postgresql.readReplica.auth.username }}
  28. REPLICA_DB_USER: {{ .Values.postgresql.readReplica.auth.username }}
  29. {{- end }}
  30. {{- if .Values.postgresql.readReplica.auth.password }}
  31. REPLICA_DB_PASS: {{ .Values.postgresql.readReplica.auth.password }}
  32. {{- end }}
  33. PREPARED_STATEMENTS: {{ .Values.mastodon.preparedStatements | quote }}
  34. DEFAULT_LOCALE: {{ .Values.mastodon.locale }}
  35. {{- if .Values.elasticsearch.enabled }}
  36. ES_ENABLED: "true"
  37. ES_PRESET: {{ .Values.elasticsearch.preset | default "single_node_cluster" | quote }}
  38. ES_HOST: {{ template "mastodon.elasticsearch.fullname" . }}-master-hl
  39. ES_PORT: "9200"
  40. {{- else if .Values.elasticsearch.hostname }}
  41. ES_ENABLED: "true"
  42. ES_PRESET: {{ .Values.elasticsearch.preset | default "single_node_cluster" | quote }}
  43. ES_HOST: {{ include "mastodon.elasticsearch.fullHostname" .}}
  44. ES_PORT: {{ .Values.elasticsearch.port | default "9200" | quote }}
  45. {{- end }}
  46. {{- with .Values.elasticsearch.user }}
  47. ES_USER: {{ . }}
  48. {{- end }}
  49. LOCAL_DOMAIN: {{ .Values.mastodon.local_domain }}
  50. {{- with .Values.mastodon.web_domain }}
  51. WEB_DOMAIN: {{ . }}
  52. {{- end }}
  53. {{- with .Values.mastodon.alternate_domains }}
  54. ALTERNATE_DOMAINS: {{ join "," . }}
  55. {{- end }}
  56. {{- with .Values.mastodon.singleUserMode }}
  57. SINGLE_USER_MODE: "true"
  58. {{- end }}
  59. {{- with .Values.mastodon.authorizedFetch }}
  60. AUTHORIZED_FETCH: {{ . | quote }}
  61. {{- end }}
  62. {{- with .Values.mastodon.limitedFederationMode }}
  63. LIMITED_FEDERATION_MODE: {{ . | quote }}
  64. {{- end }}
  65. # https://devcenter.heroku.com/articles/tuning-glibc-memory-behavior
  66. MALLOC_ARENA_MAX: "2"
  67. NODE_ENV: "production"
  68. RAILS_ENV: "production"
  69. {{- if .Values.redis.enabled }}
  70. REDIS_HOST: {{ template "mastodon.redis.fullname" . }}-master
  71. {{- else }}
  72. REDIS_HOST: {{ required "When the redis chart is disabled .Values.redis.hostname is required" .Values.redis.hostname }}
  73. {{- end }}
  74. REDIS_PORT: {{ .Values.redis.port | default "6379" | quote }}
  75. {{- if .Values.redis.sidekiq.enabled }}
  76. {{- if .Values.redis.sidekiq.hostname }}
  77. SIDEKIQ_REDIS_HOST: {{ .Values.redis.sidekiq.hostname }}
  78. {{- else }}
  79. SIDEKIQ_REDIS_HOST: {{ .Values.redis.hostname }}
  80. {{- end }}
  81. {{- if .Values.redis.sidekiq.port }}
  82. SIDEKIQ_REDIS_PORT: {{ .Values.redis.sidekiq.port | quote }}
  83. {{- else }}
  84. SIDEKIQ_REDIS_PORT: {{ .Values.redis.port | default "6379" | quote }}
  85. {{- end }}
  86. {{- end }}
  87. {{- if .Values.redis.cache.enabled }}
  88. {{- if .Values.redis.cache.hostname }}
  89. CACHE_REDIS_HOST: {{ .Values.redis.cache.hostname }}
  90. {{- else }}
  91. CACHE_REDIS_HOST: {{ .Values.redis.hostname}}
  92. {{- end }}
  93. {{- if .Values.redis.cache.port }}
  94. CACHE_REDIS_PORT: {{ .Values.redis.cache.port | quote }}
  95. {{- else }}
  96. CACHE_REDIS_PORT: {{ .Values.redis.port | default "6379" | quote }}
  97. {{- end }}
  98. {{- end }}
  99. {{- if .Values.mastodon.s3.enabled }}
  100. S3_BUCKET: {{ .Values.mastodon.s3.bucket }}
  101. S3_ENABLED: "true"
  102. S3_ENDPOINT: {{ .Values.mastodon.s3.endpoint }}
  103. S3_HOSTNAME: {{ .Values.mastodon.s3.hostname }}
  104. S3_PROTOCOL: "https"
  105. {{- if .Values.mastodon.s3.permission }}
  106. S3_PERMISSION: {{ .Values.mastodon.s3.permission }}
  107. {{- end }}
  108. {{- with .Values.mastodon.s3.region }}
  109. S3_REGION: {{ . }}
  110. {{- end }}
  111. {{- with .Values.mastodon.s3.alias_host }}
  112. S3_ALIAS_HOST: {{ . }}
  113. {{- end }}
  114. {{- with .Values.mastodon.s3.multipart_threshold }}
  115. S3_MULTIPART_THRESHOLD: "{{ . }}"
  116. {{- end }}
  117. {{- with .Values.mastodon.s3.override_path_style }}
  118. S3_OVERRIDE_PATH_STYLE: "{{ . }}"
  119. {{- end }}
  120. {{- end }}
  121. {{- with .Values.mastodon.smtp.auth_method }}
  122. SMTP_AUTH_METHOD: {{ . }}
  123. {{- end }}
  124. {{- with .Values.mastodon.smtp.ca_file }}
  125. SMTP_CA_FILE: {{ . }}
  126. {{- end }}
  127. {{- with .Values.mastodon.smtp.delivery_method }}
  128. SMTP_DELIVERY_METHOD: {{ . }}
  129. {{- end }}
  130. {{- with .Values.mastodon.smtp.domain }}
  131. SMTP_DOMAIN: {{ . }}
  132. {{- end }}
  133. {{- with .Values.mastodon.smtp.enable_starttls }}
  134. SMTP_ENABLE_STARTTLS: {{ . | quote }}
  135. {{- end }}
  136. {{- with .Values.mastodon.smtp.enable_starttls_auto }}
  137. SMTP_ENABLE_STARTTLS_AUTO: {{ . | quote }}
  138. {{- end }}
  139. {{- with .Values.mastodon.smtp.from_address }}
  140. SMTP_FROM_ADDRESS: {{ . }}
  141. {{- end }}
  142. {{- with .Values.mastodon.smtp.return_path }}
  143. SMTP_RETURN_PATH: {{ . }}
  144. {{- end }}
  145. {{- with .Values.mastodon.smtp.openssl_verify_mode }}
  146. SMTP_OPENSSL_VERIFY_MODE: {{ . }}
  147. {{- end }}
  148. {{- with .Values.mastodon.smtp.port }}
  149. SMTP_PORT: {{ . | quote }}
  150. {{- end }}
  151. {{- with .Values.mastodon.smtp.reply_to }}
  152. SMTP_REPLY_TO: {{ . }}
  153. {{- end }}
  154. {{- with .Values.mastodon.smtp.server }}
  155. SMTP_SERVER: {{ . }}
  156. {{- end }}
  157. {{- with .Values.mastodon.smtp.tls }}
  158. SMTP_TLS: {{ . | quote }}
  159. {{- end }}
  160. STREAMING_CLUSTER_NUM: {{ .Values.mastodon.streaming.workers | quote }}
  161. {{- with .Values.mastodon.streaming.base_url }}
  162. STREAMING_API_BASE_URL: {{ . | quote }}
  163. {{- end }}
  164. {{- if .Values.mastodon.trusted_proxy_ip }}
  165. TRUSTED_PROXY_IP: {{ .Values.mastodon.trusted_proxy_ip }}
  166. {{ end }}
  167. {{- if .Values.externalAuth.oidc.enabled }}
  168. OIDC_ENABLED: {{ .Values.externalAuth.oidc.enabled | quote }}
  169. OIDC_DISPLAY_NAME: {{ .Values.externalAuth.oidc.display_name }}
  170. OIDC_ISSUER: {{ .Values.externalAuth.oidc.issuer }}
  171. OIDC_DISCOVERY: {{ .Values.externalAuth.oidc.discovery | quote }}
  172. OIDC_SCOPE: {{ .Values.externalAuth.oidc.scope | quote }}
  173. OIDC_UID_FIELD: {{ .Values.externalAuth.oidc.uid_field }}
  174. OIDC_CLIENT_ID: {{ .Values.externalAuth.oidc.client_id }}
  175. OIDC_CLIENT_SECRET: {{ .Values.externalAuth.oidc.client_secret }}
  176. OIDC_REDIRECT_URI: {{ .Values.externalAuth.oidc.redirect_uri }}
  177. OIDC_SECURITY_ASSUME_EMAIL_IS_VERIFIED: {{ .Values.externalAuth.oidc.assume_email_is_verified | quote }}
  178. {{- with .Values.externalAuth.oidc.client_auth_method }}
  179. OIDC_CLIENT_AUTH_METHOD: {{ . }}
  180. {{- end }}
  181. {{- with .Values.externalAuth.oidc.response_type }}
  182. OIDC_RESPONSE_TYPE: {{ . }}
  183. {{- end }}
  184. {{- with .Values.externalAuth.oidc.response_mode }}
  185. OIDC_RESPONSE_MODE: {{ . }}
  186. {{- end }}
  187. {{- with .Values.externalAuth.oidc.display }}
  188. OIDC_DISPLAY: {{ . }}
  189. {{- end }}
  190. {{- with .Values.externalAuth.oidc.prompt }}
  191. OIDC_PROMPT: {{ . }}
  192. {{- end }}
  193. {{- with .Values.externalAuth.oidc.send_nonce }}
  194. OIDC_SEND_NONCE: {{ . }}
  195. {{- end }}
  196. {{- with .Values.externalAuth.oidc.send_scope_to_token_endpoint }}
  197. OIDC_SEND_SCOPE_TO_TOKEN_ENDPOINT: {{ . | quote }}
  198. {{- end }}
  199. {{- with .Values.externalAuth.oidc.idp_logout_redirect_uri }}
  200. OIDC_IDP_LOGOUT_REDIRECT_URI: {{ . }}
  201. {{- end }}
  202. {{- with .Values.externalAuth.oidc.http_scheme }}
  203. OIDC_HTTP_SCHEME: {{ . }}
  204. {{- end }}
  205. {{- with .Values.externalAuth.oidc.host }}
  206. OIDC_HOST: {{ . }}
  207. {{- end }}
  208. {{- with .Values.externalAuth.oidc.port }}
  209. OIDC_PORT: {{ . }}
  210. {{- end }}
  211. {{- with .Values.externalAuth.oidc.jwks_uri }}
  212. OIDC_JWKS_URI: {{ . }}
  213. {{- end }}
  214. {{- with .Values.externalAuth.oidc.auth_endpoint }}
  215. OIDC_AUTH_ENDPOINT: {{ . }}
  216. {{- end }}
  217. {{- with .Values.externalAuth.oidc.token_endpoint }}
  218. OIDC_TOKEN_ENDPOINT: {{ . }}
  219. {{- end }}
  220. {{- with .Values.externalAuth.oidc.user_info_endpoint }}
  221. OIDC_USER_INFO_ENDPOINT: {{ . }}
  222. {{- end }}
  223. {{- with .Values.externalAuth.oidc.end_session_endpoint }}
  224. OIDC_END_SESSION_ENDPOINT: {{ . }}
  225. {{- end }}
  226. {{- end }}
  227. {{- if .Values.externalAuth.saml.enabled }}
  228. SAML_ENABLED: {{ .Values.externalAuth.saml.enabled | quote }}
  229. SAML_ACS_URL: {{ .Values.externalAuth.saml.acs_url }}
  230. SAML_ISSUER: {{ .Values.externalAuth.saml.issuer }}
  231. SAML_IDP_SSO_TARGET_URL: {{ .Values.externalAuth.saml.idp_sso_target_url }}
  232. SAML_IDP_CERT: {{ .Values.externalAuth.saml.idp_cert | quote }}
  233. {{- with .Values.externalAuth.saml.idp_cert_fingerprint }}
  234. SAML_IDP_CERT_FINGERPRINT: {{ . | quote }}
  235. {{- end }}
  236. {{- with .Values.externalAuth.saml.name_identifier_format }}
  237. SAML_NAME_IDENTIFIER_FORMAT: {{ . }}
  238. {{- end }}
  239. {{- with .Values.externalAuth.saml.cert }}
  240. SAML_CERT: {{ . | quote }}
  241. {{- end }}
  242. {{- with .Values.externalAuth.saml.private_key }}
  243. SAML_PRIVATE_KEY: {{ . | quote }}
  244. {{- end }}
  245. {{- with .Values.externalAuth.saml.want_assertion_signed }}
  246. SAML_SECURITY_WANT_ASSERTION_SIGNED: {{ . | quote }}
  247. {{- end }}
  248. {{- with .Values.externalAuth.saml.want_assertion_encrypted }}
  249. SAML_SECURITY_WANT_ASSERTION_ENCRYPTED: {{ . | quote }}
  250. {{- end }}
  251. {{- with .Values.externalAuth.saml.assume_email_is_verified }}
  252. SAML_SECURITY_ASSUME_EMAIL_IS_VERIFIED: {{ . | quote }}
  253. {{- end }}
  254. {{- with .Values.externalAuth.saml.uid_attribute }}
  255. SAML_UID_ATTRIBUTE: {{ . }}
  256. {{- end }}
  257. {{- with .Values.externalAuth.saml.attributes_statements.uid }}
  258. SAML_ATTRIBUTES_STATEMENTS_UID: {{ . | quote }}
  259. {{- end }}
  260. {{- with .Values.externalAuth.saml.attributes_statements.email }}
  261. SAML_ATTRIBUTES_STATEMENTS_EMAIL: {{ . | quote }}
  262. {{- end }}
  263. {{- with .Values.externalAuth.saml.attributes_statements.full_name }}
  264. SAML_ATTRIBUTES_STATEMENTS_FULL_NAME: {{ . | quote }}
  265. {{- end }}
  266. {{- with .Values.externalAuth.saml.attributes_statements.first_name }}
  267. SAML_ATTRIBUTES_STATEMENTS_FIRST_NAME: {{ . | quote }}
  268. {{- end }}
  269. {{- with .Values.externalAuth.saml.attributes_statements.last_name }}
  270. SAML_ATTRIBUTES_STATEMENTS_LAST_NAME: {{ . | quote }}
  271. {{- end }}
  272. {{- with .Values.externalAuth.saml.attributes_statements.verified }}
  273. SAML_ATTRIBUTES_STATEMENTS_VERIFIED: {{ . | quote }}
  274. {{- end }}
  275. {{- with .Values.externalAuth.saml.attributes_statements.verified_email }}
  276. SAML_ATTRIBUTES_STATEMENTS_VERIFIED_EMAIL: {{ . | quote }}
  277. {{- end }}
  278. {{- end }}
  279. {{- with .Values.externalAuth.oauth_global.omniauth_only }}
  280. OMNIAUTH_ONLY: {{ . | quote }}
  281. {{- end }}
  282. {{- if .Values.externalAuth.cas.enabled }}
  283. CAS_ENABLED: {{ .Values.externalAuth.cas.enabled | quote }}
  284. CAS_URL: {{ .Values.externalAuth.cas.url }}
  285. CAS_HOST: {{ .Values.externalAuth.cas.host }}
  286. CAS_PORT: {{ .Values.externalAuth.cas.port }}
  287. CAS_SSL: {{ .Values.externalAuth.cas.ssl | quote }}
  288. {{- with .Values.externalAuth.cas.validate_url }}
  289. CAS_VALIDATE_URL: {{ . }}
  290. {{- end }}
  291. {{- with .Values.externalAuth.cas.callback_url }}
  292. CAS_CALLBACK_URL: {{ . }}
  293. {{- end }}
  294. {{- with .Values.externalAuth.cas.logout_url }}
  295. CAS_LOGOUT_URL: {{ . }}
  296. {{- end }}
  297. {{- with .Values.externalAuth.cas.login_url }}
  298. CAS_LOGIN_URL: {{ . }}
  299. {{- end }}
  300. {{- with .Values.externalAuth.cas.uid_field }}
  301. CAS_UID_FIELD: {{ . | quote }}
  302. {{- end }}
  303. {{- with .Values.externalAuth.cas.ca_path }}
  304. CAS_CA_PATH: {{ . }}
  305. {{- end }}
  306. {{- with .Values.externalAuth.cas.disable_ssl_verification }}
  307. CAS_DISABLE_SSL_VERIFICATION: {{ . | quote }}
  308. {{- end }}
  309. {{- with .Values.externalAuth.cas.assume_email_is_verified }}
  310. CAS_SECURITY_ASSUME_EMAIL_IS_VERIFIED: {{ . | quote }}
  311. {{- end }}
  312. {{- with .Values.externalAuth.cas.keys.uid }}
  313. CAS_UID_KEY: {{ . | quote }}
  314. {{- end }}
  315. {{- with .Values.externalAuth.cas.keys.name }}
  316. CAS_NAME_KEY: {{ . | quote }}
  317. {{- end }}
  318. {{- with .Values.externalAuth.cas.keys.email }}
  319. CAS_EMAIL_KEY: {{ . | quote }}
  320. {{- end }}
  321. {{- with .Values.externalAuth.cas.keys.nickname }}
  322. CAS_NICKNAME_KEY: {{ . | quote }}
  323. {{- end }}
  324. {{- with .Values.externalAuth.cas.keys.first_name }}
  325. CAS_FIRST_NAME_KEY: {{ . | quote }}
  326. {{- end }}
  327. {{- with .Values.externalAuth.cas.keys.last_name }}
  328. CAS_LAST_NAME_KEY: {{ . | quote }}
  329. {{- end }}
  330. {{- with .Values.externalAuth.cas.keys.location }}
  331. CAS_LOCATION_KEY: {{ . | quote }}
  332. {{- end }}
  333. {{- with .Values.externalAuth.cas.keys.image }}
  334. CAS_IMAGE_KEY: {{ . | quote }}
  335. {{- end }}
  336. {{- with .Values.externalAuth.cas.keys.phone }}
  337. CAS_PHONE_KEY: {{ . | quote }}
  338. {{- end }}
  339. {{- end }}
  340. {{- with .Values.externalAuth.pam.enabled }}
  341. PAM_ENABLED: {{ . | quote }}
  342. {{- with .Values.externalAuth.pam.email_domain }}
  343. PAM_EMAIL_DOMAIN: {{ . }}
  344. {{- end }}
  345. {{- with .Values.externalAuth.pam.default_service }}
  346. PAM_DEFAULT_SERVICE: {{ . }}
  347. {{- end }}
  348. {{- with .Values.externalAuth.pam.controlled_service }}
  349. PAM_CONTROLLED_SERVICE: {{ . }}
  350. {{- end }}
  351. {{- end }}
  352. {{- if .Values.externalAuth.ldap.enabled }}
  353. LDAP_ENABLED: {{ .Values.externalAuth.ldap.enabled | quote }}
  354. LDAP_HOST: {{ .Values.externalAuth.ldap.host }}
  355. LDAP_PORT: {{ .Values.externalAuth.ldap.port | quote }}
  356. LDAP_METHOD: {{ .Values.externalAuth.ldap.method }}
  357. {{- if .Values.externalAuth.ldap.tls_no_verify }}
  358. LDAP_TLS_NO_VERIFY: {{ .Values.externalAuth.ldap.tls_no_verify | quote }}
  359. {{- end }}
  360. {{- if .Values.externalAuth.ldap.base }}
  361. LDAP_BASE: {{ .Values.externalAuth.ldap.base }}
  362. {{- end }}
  363. {{- if .Values.externalAuth.ldap.bind_dn }}
  364. LDAP_BIND_DN: {{ .Values.externalAuth.ldap.bind_dn }}
  365. {{- end }}
  366. {{- with .Values.externalAuth.ldap.password }}
  367. LDAP_PASSWORD: {{ . }}
  368. {{- end }}
  369. {{- with .Values.externalAuth.ldap.uid }}
  370. LDAP_UID: {{ . }}
  371. {{- end }}
  372. {{- with .Values.externalAuth.ldap.mail }}
  373. LDAP_MAIL: {{ . }}
  374. {{- end }}
  375. {{- with .Values.externalAuth.ldap.search_filter }}
  376. LDAP_SEARCH_FILTER: {{ . }}
  377. {{- end }}
  378. {{- with .Values.externalAuth.ldap.uid_conversion.enabled }}
  379. LDAP_UID_CONVERSION_ENABLED: {{ . | quote }}
  380. {{- end }}
  381. {{- with .Values.externalAuth.ldap.uid_conversion.search }}
  382. LDAP_UID_CONVERSION_SEARCH: {{ . }}
  383. {{- end }}
  384. {{- with .Values.externalAuth.ldap.uid_conversion.replace }}
  385. LDAP_UID_CONVERSION_REPLACE: {{ . }}
  386. {{- end }}
  387. {{- end }}
  388. {{- if .Values.mastodon.metrics.statsd.address }}
  389. STATSD_ADDR: {{ .Values.mastodon.metrics.statsd.address }}
  390. {{- else if .Values.mastodon.metrics.statsd.exporter.enabled }}
  391. STATSD_ADDR: localhost:9125
  392. {{- end }}
  393. {{- range $k, $v := .Values.mastodon.extraEnvVars }}
  394. {{ $k }}: {{ quote $v }}
  395. {{- end }}
  396. {{- if .Values.mastodon.deepl.enabled }}
  397. DEEPL_PLAN: {{ .Values.mastodon.deepl.plan }}
  398. {{- end }}
  399. {{- if .Values.mastodon.hcaptcha.enabled }}
  400. HCAPTCHA_SITE_KEY: {{ .Values.mastodon.hcaptcha.siteId }}
  401. {{- end }}
  402. {{- if .Values.mastodon.cacheBuster.enabled }}
  403. CACHE_BUSTER_ENABLED: "true"
  404. {{- if .Values.mastodon.cacheBuster.httpMethod }}
  405. CACHE_BUSTER_HTTP_METHOD: {{ .Values.mastodon.cacheBuster.httpMethod }}
  406. {{- end }}
  407. {{- if .Values.mastodon.cacheBuster.authHeader }}
  408. CACHE_BUSTER_SECRET_HEADER: {{ .Values.mastodon.cacheBuster.authHeader }}
  409. {{- end }}
  410. {{- else }}
  411. CACHE_BUSTER_ENABLED: "false"
  412. {{- end }}
  413. {{- with .Values.timezone }}
  414. TZ: {{ . | quote }}
  415. {{- end }}