Merge pull request #35 from holysoles/fix_extraenvfrom_description

correct extraEnv descriptions for deployment
This commit is contained in:
Jesse Hitch
2025-01-23 08:45:19 +01:00
committed by GitHub
3 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/) # Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.14.4 version: 0.14.5
# This is the version number of the application being deployed. # This is the version number of the application being deployed.
# renovate:image=ghcr.io/mattlqx/docker-pixelfed # renovate:image=ghcr.io/mattlqx/docker-pixelfed
+4 -3
View File
@@ -1,6 +1,6 @@
# pixelfed # pixelfed
![Version: 0.14.4](https://img.shields.io/badge/Version-0.14.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.4-nginx](https://img.shields.io/badge/AppVersion-v0.12.4--nginx-informational?style=flat-square) ![Version: 0.14.5](https://img.shields.io/badge/Version-0.14.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.12.4-nginx](https://img.shields.io/badge/AppVersion-v0.12.4--nginx-informational?style=flat-square)
A Helm chart for deploying Pixelfed on Kubernetes A Helm chart for deploying Pixelfed on Kubernetes
@@ -49,8 +49,8 @@ A Helm chart for deploying Pixelfed on Kubernetes
| externalValkey.port | string | `"6379"` | | | externalValkey.port | string | `"6379"` | |
| externalValkey.scheme | string | `"tcp"` | | | externalValkey.scheme | string | `"tcp"` | |
| extraContainers | list | `[]` | set sidecar containers to run along side the pixelfed container | | extraContainers | list | `[]` | set sidecar containers to run along side the pixelfed container |
| extraEnv | list | `[]` | template out extra environment variables from ConfigMaps or Secrets | | extraEnv | list | `[]` | template out extra environment variables |
| extraEnvFrom | list | `[]` | template out extra enviornment variables | | extraEnvFrom | list | `[]` | template out extra environment variables e.g. from ConfigMaps or Secrets |
| extraInitContainers | list | `[]` | set extra init containers | | extraInitContainers | list | `[]` | set extra init containers |
| extraVolumeMounts | list | `[]` | Additional volumeMounts on the output Deployment definition | | extraVolumeMounts | list | `[]` | Additional volumeMounts on the output Deployment definition |
| extraVolumes | list | `[]` | Additional volumes on the output Deployment definition | | extraVolumes | list | `[]` | Additional volumes on the output Deployment definition |
@@ -185,6 +185,7 @@ A Helm chart for deploying Pixelfed on Kubernetes
| postgresql.enabled | bool | `true` | enable the bundled [postgresql sub chart from Bitnami](https://github.com/bitnami/charts/blob/main/bitnami/postgresql/README.md#parameters). Must set to true if externalDatabase.enabled=false | | postgresql.enabled | bool | `true` | enable the bundled [postgresql sub chart from Bitnami](https://github.com/bitnami/charts/blob/main/bitnami/postgresql/README.md#parameters). Must set to true if externalDatabase.enabled=false |
| postgresql.fullnameOverride | string | `"postgresql"` | | | postgresql.fullnameOverride | string | `"postgresql"` | |
| postgresql.global.storageClass | string | `""` | | | postgresql.global.storageClass | string | `""` | |
| postgresql.volumePermissions.enabled | bool | `false` | If you get "mkdir: cannot create directory /bitnami/postgresql/data: Permission denied" error, set these (This often happens on setups like minikube) |
| readinessProbe | object | `{}` | This is to setup the readiness probe more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ | | readinessProbe | object | `{}` | This is to setup the readiness probe more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ |
| replicaCount | int | `1` | This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ | | replicaCount | int | `1` | This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ |
| resources | object | `{}` | set resource limits and requests for cpu, memory, and ephemeral storage | | resources | object | `{}` | set resource limits and requests for cpu, memory, and ephemeral storage |
+2 -2
View File
@@ -28,10 +28,10 @@ fullnameOverride: ""
# -- how many revisions of the deployment to keep for rollbacks # -- how many revisions of the deployment to keep for rollbacks
revisionHistoryLimit: 10 revisionHistoryLimit: 10
# -- template out extra environment variables from ConfigMaps or Secrets # -- template out extra environment variables
extraEnv: [] extraEnv: []
# -- template out extra enviornment variables # -- template out extra environment variables e.g. from ConfigMaps or Secrets
extraEnvFrom: [] extraEnvFrom: []
# This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/ # This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/