diff --git a/chart/stirling-pdf/Chart.yaml b/chart/stirling-pdf/Chart.yaml index 1aa262e1d03..01b5712cdd8 100644 --- a/chart/stirling-pdf/Chart.yaml +++ b/chart/stirling-pdf/Chart.yaml @@ -1,16 +1,17 @@ apiVersion: v2 appVersion: 0.31.1 -description: locally hosted web application that allows you to perform various operations +description: + locally hosted web application that allows you to perform various operations on PDF files home: https://github.com/Stirling-Tools/Stirling-PDF keywords: -- stirling-pdf -- helm -- charts repo + - stirling-pdf + - helm + - charts repo maintainers: -- name: Stirling-Tools - url: https://github.com/Stirling-Tools/Stirling-PDF + - name: Stirling-Tools + url: https://github.com/Stirling-Tools/Stirling-PDF name: stirling-pdf-chart sources: -- https://github.com/Stirling-Tools/Stirling-PDF -version: 1.0.1 + - https://github.com/Stirling-Tools/Stirling-PDF +version: 1.1.0 diff --git a/chart/stirling-pdf/README.md b/chart/stirling-pdf/README.md index 7536c6f0e51..cc2c310fbb9 100644 --- a/chart/stirling-pdf/README.md +++ b/chart/stirling-pdf/README.md @@ -1,6 +1,6 @@ # stirling-pdf-chart -![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![AppVersion: 0.30.1](https://img.shields.io/badge/AppVersion-0.30.1-informational?style=flat-square) +![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: 0.31.1](https://img.shields.io/badge/AppVersion-0.31.1-informational?style=flat-square) locally hosted web application that allows you to perform various operations on PDF files @@ -21,7 +21,7 @@ locally hosted web application that allows you to perform various operations on Add the following repo to use the chart: ```console -helm repo add stirling-pdf https://stirling-tools.github.io/Stirling-PDF +helm repo add stirling-pdf https://docs.stirlingpdf.com/Stirling-PDF/ ``` ## Values @@ -36,7 +36,8 @@ helm repo add stirling-pdf https://stirling-tools.github.io/Stirling-PDF | deployment.extraVolumes | list | `[]` | Additional volumes | | deployment.labels | object | `{}` | | | deployment.sidecarContainers | object | `{}` | of the chart's content, send notifications... | -| envs | list | `[]` | | +| envs | list | `[]` | Environment variables to add to the stirling-pdf pods | +| envsFrom | list | `[]` | Environment variables from secrets or configmaps to add to the stirling-pdf pods | | extraArgs | list | `[]` | | | image.pullPolicy | string | `"IfNotPresent"` | | | image.repository | string | `"frooodle/s-pdf"` | | diff --git a/chart/stirling-pdf/templates/deployment.yaml b/chart/stirling-pdf/templates/deployment.yaml index d91e8097788..e642592814d 100644 --- a/chart/stirling-pdf/templates/deployment.yaml +++ b/chart/stirling-pdf/templates/deployment.yaml @@ -68,6 +68,10 @@ spec: {{- if .Values.envs }} {{ toYaml .Values.envs | indent 8 }} {{- end }} +{{- with .Values.envsFrom }} + envFrom: +{{- toYaml . | nindent 8 }} +{{- end }} {{- if .Values.extraArgs }} args: {{ toYaml .Values.extraArgs | indent 8 }} diff --git a/chart/stirling-pdf/values.yaml b/chart/stirling-pdf/values.yaml index eec1856e3a6..8a9e8aed00c 100644 --- a/chart/stirling-pdf/values.yaml +++ b/chart/stirling-pdf/values.yaml @@ -18,6 +18,7 @@ commonLabels: {} # -- Rootpath for the application rootPath: / +# -- Environment variables to add to the stirling-pdf pods envs: [] # - name: UI_APP_NAME # value: "Stirling PDF" @@ -30,6 +31,13 @@ envs: [] # - name: APP_LOCALE # value: "en_GB" +# -- Environment variables from secrets or configmaps to add to the stirling-pdf pods +envsFrom: [] +# - configMapRef: +# name: config +# - secretRef: +# name: config + deployment: # -- Stirling-pdf Deployment annotations annotations: {}