From fb2ec0ab1d29264f53863e973816b2f5804ce16d Mon Sep 17 00:00:00 2001 From: jessebot Date: Thu, 23 Jan 2025 21:54:06 +0100 Subject: [PATCH] add pixelfed service target port --- charts/pixelfed/README.md | 2 +- charts/pixelfed/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/pixelfed/README.md b/charts/pixelfed/README.md index 1c4cafd..6e1da1e 100644 --- a/charts/pixelfed/README.md +++ b/charts/pixelfed/README.md @@ -196,7 +196,7 @@ A Helm chart for deploying Pixelfed on Kubernetes | revisionHistoryLimit | int | `10` | how many revisions of the deployment to keep for rollbacks | | securityContext.runAsUser | int | `33` | user to run the pixelfed container as | | service.port | int | `80` | This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports | -| service.targetPort | int | `80` | Port to attach to on the pods. Also sets what port nginx listens on inside the container. | +| service.targetPort | int | `8080` | Port to attach to on the pods. Also sets what port nginx listens on inside the container. | | service.type | string | `"ClusterIP"` | This sets the service type more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types | | serviceAccount.annotations | object | `{}` | Annotations to add to the service account | | serviceAccount.automount | bool | `true` | Automatically mount a ServiceAccount's API credentials? | diff --git a/charts/pixelfed/values.yaml b/charts/pixelfed/values.yaml index 561de54..e10bd7a 100644 --- a/charts/pixelfed/values.yaml +++ b/charts/pixelfed/values.yaml @@ -80,7 +80,7 @@ service: # -- This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports port: 80 # -- Port to attach to on the pods. Also sets what port nginx listens on inside the container. - targetPort: 80 + targetPort: 8080 # This block is for setting up the ingress for more information can be found here: # https://kubernetes.io/docs/concepts/services-networking/ingress/