Skip to content

Commit fc658ae

Browse files
authored
chore: upgrade ingress version to 2.0.13 (#238)
Signed-off-by: Ashing Zheng <[email protected]>
1 parent 83cef51 commit fc658ae

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

charts/ingress-controller/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ keywords:
66
- api7
77
- crd
88
type: application
9-
version: 0.1.19
10-
appVersion: 2.0.12
9+
version: 0.1.20
10+
appVersion: 2.0.13
1111
maintainers:
1212
- name: API7
1313

charts/ingress-controller/README.md

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

3-
![Version: 0.1.19](https://img.shields.io/badge/Version-0.1.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.12](https://img.shields.io/badge/AppVersion-2.0.12-informational?style=flat-square)
3+
![Version: 0.1.20](https://img.shields.io/badge/Version-0.1.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.13](https://img.shields.io/badge/AppVersion-2.0.13-informational?style=flat-square)
44

55
Ingress Controller for API7
66

@@ -29,6 +29,7 @@ Ingress Controller for API7
2929
| config.controllerName | string | `"apisix.apache.org/apisix-ingress-controller"` | |
3030
| config.disableGatewayApi | bool | `false` | |
3131
| config.enableHTTP2 | bool | `false` | |
32+
| config.enableServer | bool | `false` | |
3233
| config.execADCTimeout | string | `"15s"` | |
3334
| config.leaderElection.disable | bool | `false` | |
3435
| config.leaderElection.id | string | `"apisix-ingress-controller-leader"` | |
@@ -42,11 +43,12 @@ Ingress Controller for API7
4243
| config.provider.syncPeriod | string | `"1h"` | |
4344
| config.provider.type | string | `"api7ee"` | |
4445
| config.secureMetrics | bool | `false` | |
46+
| config.serverAddr | string | `"127.0.0.1:9092"` | |
4547
| deployment.affinity | object | `{}` | |
4648
| deployment.annotations | object | `{}` | |
4749
| deployment.image.pullPolicy | string | `"IfNotPresent"` | |
4850
| deployment.image.repository | string | `"api7/api7-ingress-controller"` | |
49-
| deployment.image.tag | string | `"2.0.12"` | |
51+
| deployment.image.tag | string | `"2.0.13"` | |
5052
| deployment.nodeSelector | object | `{}` | |
5153
| deployment.podAnnotations | object | `{}` | |
5254
| deployment.podSecurityContext.fsGroup | int | `2000` | |

charts/ingress-controller/templates/configmap.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ data:
1414
retry_period: {{ .Values.config.leaderElection.retryPeriod | default "2s" }}
1515
disable: {{ .Values.config.leaderElection.disable | default false }}
1616
metrics_addr: {{ .Values.config.metricsAddr | default ":8080" }}
17+
enable_server: {{ .Values.config.enableServer | default false }}
18+
server_addr: {{ .Values.config.serverAddr | default "127.0.0.1:9092" }}
1719
enable_http2: {{ .Values.config.enableHTTP2 | default false }}
1820
probe_addr: {{ .Values.config.probeAddr | default ":8081" }}
1921
secure_metrics: {{ .Values.config.secureMetrics | default false }}

charts/ingress-controller/values.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ deployment:
3434
image:
3535
repository: api7/api7-ingress-controller
3636
pullPolicy: IfNotPresent
37-
tag: "2.0.12"
37+
tag: "2.0.13"
3838
# -- Set pod resource requests & limits
3939
resources: {}
4040

@@ -57,6 +57,8 @@ config:
5757
retryPeriod: "2s"
5858
disable: false
5959
metricsAddr: ":8080"
60+
enableServer: false # The debug API is behind this server which is disabled by default for security reasons.
61+
serverAddr: "127.0.0.1:9092" # Available endpoints: /debug can be used to debug in-memory state of translated adc configs to be synced with data plane.
6062
enableHTTP2: false
6163
probeAddr: ":8081"
6264
secureMetrics: false

0 commit comments

Comments
 (0)