Skip to content

Commit 292f509

Browse files
authored
feat: default enable api7 gateway tls (#120)
1 parent d5d1d32 commit 292f509

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

charts/api7/README.md

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

3-
![Version: 0.14.1](https://img.shields.io/badge/Version-0.14.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
3+
![Version: 0.14.3](https://img.shields.io/badge/Version-0.14.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square)
44

55
A Helm chart for Kubernetes
66

@@ -66,11 +66,20 @@ A Helm chart for Kubernetes
6666
| developer_portal.extraEnvVars | list | `[]` | |
6767
| developer_portal.image.pullPolicy | string | `"IfNotPresent"` | |
6868
| developer_portal.image.repository | string | `"api7/api7-developer-portal"` | |
69-
| developer_portal.image.tag | string | `"v0.0.3"` | |
69+
| developer_portal.image.tag | string | `"v0.0.4"` | |
70+
| developer_portal.ingress.annotations | object | `{}` | |
71+
| developer_portal.ingress.className | string | `""` | |
72+
| developer_portal.ingress.enabled | bool | `false` | |
73+
| developer_portal.ingress.hosts[0].host | string | `"developer-portal.local"` | |
74+
| developer_portal.ingress.hosts[0].paths[0].path | string | `"/"` | |
75+
| developer_portal.ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | |
76+
| developer_portal.ingress.tls | list | `[]` | |
77+
| developer_portal.port | int | `4321` | |
7078
| developer_portal.replicaCount | int | `1` | |
7179
| developer_portal_configuration.enable | bool | `true` | |
7280
| developer_portal_configuration.server.listen.host | string | `"0.0.0.0"` | |
7381
| developer_portal_configuration.server.listen.port | int | `4321` | |
82+
| developer_portal_configuration.server.listen.tls.enabled | bool | `true` | |
7483
| developer_portal_service.port | int | `4321` | |
7584
| developer_portal_service.type | string | `"ClusterIP"` | |
7685
| dp_manager.extraEnvVars | list | `[]` | |

charts/gateway/Chart.yaml

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

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application. Versions are not expected to

charts/gateway/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ The command removes all the Kubernetes components associated with the chart and
188188
| gateway.ingress.annotations | object | `{}` | Ingress annotations |
189189
| gateway.labelsOverride | object | `{}` | Override default labels assigned to API7 Gateway gateway resources |
190190
| gateway.stream | object | `{"enabled":false,"only":false,"tcp":[],"udp":[]}` | API7 Gateway service settings for stream. L4 proxy (TCP/UDP) |
191-
| gateway.tls | object | `{"additionalContainerPorts":[],"certCAFilename":"","containerPort":9443,"enabled":false,"existingCASecret":"","http2":{"enabled":true},"servicePort":443,"sslProtocols":"TLSv1.2 TLSv1.3"}` | API7 Gateway service settings for tls |
191+
| gateway.tls | object | `{"additionalContainerPorts":[],"certCAFilename":"","containerPort":9443,"enabled":true,"existingCASecret":"","http2":{"enabled":true},"servicePort":443,"sslProtocols":"TLSv1.2 TLSv1.3"}` | API7 Gateway service settings for tls |
192192
| gateway.tls.additionalContainerPorts | list | `[]` | Support multiple https ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L99) |
193193
| gateway.tls.certCAFilename | string | `""` | Filename be used in the gateway.tls.existingCASecret |
194194
| gateway.tls.existingCASecret | string | `""` | Specifies the name of Secret contains trusted CA certificates in the PEM format used to verify the certificate when APISIX needs to do SSL/TLS handshaking with external services (e.g. etcd) |

charts/gateway/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ gateway:
262262
# enable_http2: true
263263
# -- API7 Gateway service settings for tls
264264
tls:
265-
enabled: false
265+
enabled: true
266266
servicePort: 443
267267
containerPort: 9443
268268
# -- Support multiple https ports, See [Configuration](https://github.com/apache/apisix/blob/0bc65ea9acd726f79f80ae0abd8f50b7eb172e3d/conf/config-default.yaml#L99)

0 commit comments

Comments
 (0)