Synchronize upstreamed folder to b9f1d210d

This commit is contained in:
bitnami-bot
2019-09-05 08:35:10 +00:00
parent 9fa44e2f9f
commit 3cc86e5527
5 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
apiVersion: v1
name: wordpress
version: 7.2.3
version: 7.3.0
appVersion: 5.2.2
description: Web publishing platform for building blogs and websites.
icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png

View File

@@ -92,6 +92,7 @@ The following table lists the configurable parameters of the WordPress chart and
| `service.type` | Kubernetes Service type | `LoadBalancer` |
| `service.port` | Service HTTP port | `80` |
| `service.httpsPort` | Service HTTPS port | `443` |
| `service.httpsTargetPort` | Service Target HTTPS port | `https` |
| `service.metricsPort` | Service Metrics port | `9117` |
| `service.externalTrafficPolicy` | Enable client source IP preservation | `Cluster` |
| `service.nodePorts.http` | Kubernetes http node port | `""` |

View File

@@ -27,7 +27,7 @@ spec:
{{- end }}
- name: https
port: {{ .Values.service.httpsPort }}
targetPort: https
targetPort: {{ .Values.service.httpsTargetPort }}
{{- if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePorts.https)))}}
nodePort: {{ .Values.service.nodePorts.https }}
{{- else if eq .Values.service.type "ClusterIP" }}

View File

@@ -193,6 +193,10 @@ service:
port: 80
# HTTPS Port
httpsPort: 443
# HTTPS Target Port
# defaults to https unless overridden to the specified port.
# if you want the target port to be "http" or "80" you can specify that here.
httpsTargetPort: https
# metrics Port
metricsPort: 9117
##

View File

@@ -193,6 +193,10 @@ service:
port: 80
# HTTPS Port
httpsPort: 443
# HTTPS Target Port
# defaults to https unless overridden to the specified port.
# if you want the target port to be "http" or "80" you can specify that here.
httpsTargetPort: https
# metrics Port
metricsPort: 9117
##