You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| replicaCount | int |`1`| This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/|
162
162
| resources | object |`{}`||
163
163
| securityContext | object |`{}`||
164
164
| 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|
165
+
| service.targetPort | int |`80`| Port to attach to on the pods. Also sets what port nginx listens on inside the container. |
165
166
| 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|
166
167
| serviceAccount.annotations | object |`{}`| Annotations to add to the service account |
167
168
| serviceAccount.automount | bool |`true`| Automatically mount a ServiceAccount's API credentials? |
Copy file name to clipboardExpand all lines: charts/pixelfed/values.yaml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,8 @@ service:
56
56
type: ClusterIP
57
57
# -- This sets the ports more information can be found here: https://kubernetes.io/docs/concepts/services-networking/service/#field-spec-ports
58
58
port: 80
59
+
# -- Port to attach to on the pods. Also sets what port nginx listens on inside the container.
60
+
targetPort: 80
59
61
60
62
# This block is for setting up the ingress for more information can be found here: https://kubernetes.io/docs/concepts/services-networking/ingress/
61
63
ingress:
@@ -87,12 +89,12 @@ resources: {}
87
89
# This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
88
90
livenessProbe:
89
91
httpGet:
90
-
path: /
92
+
path: /api/service/health-check
91
93
port: http
92
94
93
95
readinessProbe:
94
96
httpGet:
95
-
path: /
97
+
path: /api/service/health-check
96
98
port: http
97
99
98
100
# This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/
0 commit comments