Skip to content

Commit 3684161

Browse files
authored
Merge pull request #35 from holysoles/fix_extraenvfrom_description
correct extraEnv descriptions for deployment
2 parents dec4c4c + 7bdc545 commit 3684161

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

charts/pixelfed/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.14.4
18+
version: 0.14.5
1919

2020
# This is the version number of the application being deployed.
2121
# renovate:image=ghcr.io/mattlqx/docker-pixelfed

charts/pixelfed/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pixelfed
22

3-
![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)
3+
![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)
44

55
A Helm chart for deploying Pixelfed on Kubernetes
66

@@ -49,8 +49,8 @@ A Helm chart for deploying Pixelfed on Kubernetes
4949
| externalValkey.port | string | `"6379"` | |
5050
| externalValkey.scheme | string | `"tcp"` | |
5151
| extraContainers | list | `[]` | set sidecar containers to run along side the pixelfed container |
52-
| extraEnv | list | `[]` | template out extra environment variables from ConfigMaps or Secrets |
53-
| extraEnvFrom | list | `[]` | template out extra enviornment variables |
52+
| extraEnv | list | `[]` | template out extra environment variables |
53+
| extraEnvFrom | list | `[]` | template out extra environment variables e.g. from ConfigMaps or Secrets |
5454
| extraInitContainers | list | `[]` | set extra init containers |
5555
| extraVolumeMounts | list | `[]` | Additional volumeMounts on the output Deployment definition |
5656
| extraVolumes | list | `[]` | Additional volumes on the output Deployment definition |
@@ -185,6 +185,7 @@ A Helm chart for deploying Pixelfed on Kubernetes
185185
| 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 |
186186
| postgresql.fullnameOverride | string | `"postgresql"` | |
187187
| postgresql.global.storageClass | string | `""` | |
188+
| 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) |
188189
| 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/ |
189190
| replicaCount | int | `1` | This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ |
190191
| resources | object | `{}` | set resource limits and requests for cpu, memory, and ephemeral storage |

charts/pixelfed/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ fullnameOverride: ""
2828
# -- how many revisions of the deployment to keep for rollbacks
2929
revisionHistoryLimit: 10
3030

31-
# -- template out extra environment variables from ConfigMaps or Secrets
31+
# -- template out extra environment variables
3232
extraEnv: []
3333

34-
# -- template out extra enviornment variables
34+
# -- template out extra environment variables e.g. from ConfigMaps or Secrets
3535
extraEnvFrom: []
3636

3737
# This section builds out the service account more information can be found here: https://kubernetes.io/docs/concepts/security/service-accounts/

0 commit comments

Comments
 (0)