From 71cad17390fef71d5525a051a1ac7d75dc8b6b3a Mon Sep 17 00:00:00 2001 From: 0hlov3 Date: Sun, 19 Nov 2023 20:25:14 +0100 Subject: [PATCH] Updates privatebin chart --- charts/privatebin/Chart.yaml | 2 +- charts/privatebin/templates/configmap.yaml | 6 +++--- charts/privatebin/values.yaml | 3 +-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/charts/privatebin/Chart.yaml b/charts/privatebin/Chart.yaml index 25e98fa..af80c3c 100644 --- a/charts/privatebin/Chart.yaml +++ b/charts/privatebin/Chart.yaml @@ -8,7 +8,7 @@ keywords: - pastebin - self-destroy type: application -version: 0.1.1 +version: 0.1.2 appVersion: "1.6.0" maintainers: - name: fSocietySocial diff --git a/charts/privatebin/templates/configmap.yaml b/charts/privatebin/templates/configmap.yaml index f1d6e57..a817fa6 100644 --- a/charts/privatebin/templates/configmap.yaml +++ b/charts/privatebin/templates/configmap.yaml @@ -132,9 +132,9 @@ data: never = 0 [formatter_options] ; Set available formatters, their order and their labels - plaintext = "{{ .Values.config.formatter_options.plaintext }}" - syntaxhighlighting = "{{ .Values.config.formatter_options.syntaxhighlighting }}" - markdown = "{{ .Values.config.formatter_options.markdown }}" + plaintext = "{{ .Values.config.formatterOptions.plaintext }}" + syntaxhighlighting = "{{ .Values.config.formatterOptions.syntaxhighlighting }}" + markdown = "{{ .Values.config.formatterOptions.markdown }}" [traffic] ; time limit between calls from the same IP address in seconds ; Set this to 0 to disable rate limiting. diff --git a/charts/privatebin/values.yaml b/charts/privatebin/values.yaml index 05667aa..84a2e6e 100644 --- a/charts/privatebin/values.yaml +++ b/charts/privatebin/values.yaml @@ -13,7 +13,6 @@ image: config: # The following values are used to configure the privatebin container - # name: "PrivateBin" basepath: "https://privatebin.example.com/" discussion: true @@ -37,7 +36,7 @@ config: # compression: "zlib" expire: default: "1week" - formatter_options: + formatterOptions: plaintext: "Plain Text" syntaxhighlighting: "Source Code" markdown: "Markdown"