Skip to content

Commit 85c7b1f

Browse files
authored
rel: Release 2.0.4 (#1571)
1 parent 8f66021 commit 85c7b1f

File tree

10 files changed

+11
-37
lines changed

10 files changed

+11
-37
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v2.0.3
1+
v2.0.4

helm/core/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 2.0.3
2+
appVersion: 2.0.4
33
description: Helm chart for deploying higress gateways
44
icon: https://higress.io/img/higress_logo_small.png
55
home: http://higress.io/
@@ -10,4 +10,4 @@ name: higress-core
1010
sources:
1111
- http://github.com/alibaba/higress
1212
type: application
13-
version: 2.0.3
13+
version: 2.0.4

helm/core/templates/_pod.tpl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ Rendering the pod template of gateway component.
77
template:
88
metadata:
99
annotations:
10-
{{- if .Values.global.enableHigressIstio }}
11-
"enableHigressIstio": "true"
12-
{{- end }}
1310
{{- if .Values.gateway.podAnnotations }}
1411
{{- toYaml .Values.gateway.podAnnotations | nindent 6 }}
1512
{{- end }}
@@ -268,11 +265,7 @@ template:
268265
{{- end }}
269266
- name: higress-ca-root-cert
270267
configMap:
271-
{{- if .Values.global.enableHigressIstio }}
272-
name: istio-ca-root-cert
273-
{{- else }}
274268
name: higress-ca-root-cert
275-
{{- end }}
276269
- name: config
277270
configMap:
278271
name: higress-config

helm/core/templates/configmap.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,7 @@
2020
# When processing a leaf namespace Istio will search for declarations in that namespace first
2121
# and if none are found it will search in the root namespace. Any matching declaration found in the root namespace
2222
# is processed as if it were declared in the leaf namespace.
23-
{{- if .Values.global.enableHigressIstio }}
24-
rootNamespace: {{ .Values.meshConfig.rootNamespace | default .Values.global.istioNamespace }}
25-
{{- else }}
2623
rootNamespace: {{ .Release.Namespace }}
27-
{{- end }}
2824
2925
configSources:
3026
- address: "xds://127.0.0.1:15051"
@@ -85,12 +81,8 @@
8581
discoveryAddress: {{ printf "istiod.%s.svc" .Release.Namespace }}:15012
8682
{{- end }}
8783
{{- else }}
88-
{{- if .Values.global.enableHigressIstio }}
89-
discoveryAddress: {{ printf "istiod.%s.svc" .Values.global.istioNamespace }}:15012
90-
{{- else }}
9184
discoveryAddress: {{ include "controller.name" . }}.{{.Release.Namespace}}.svc:15012
9285
{{- end }}
93-
{{- end }}
9486
proxyStatsMatcher:
9587
inclusionRegexps:
9688
- ".*"

helm/core/templates/controller-deployment.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ spec:
9696
volumeMounts:
9797
- name: log
9898
mountPath: /var/log
99-
{{- if not .Values.global.enableHigressIstio }}
10099
- name: discovery
101100
image: "{{ .Values.pilot.hub | default .Values.global.hub }}/{{ .Values.pilot.image | default "pilot" }}:{{ .Values.pilot.tag | default .Chart.AppVersion }}"
102101
{{- if .Values.global.imagePullPolicy }}
@@ -229,10 +228,8 @@ spec:
229228
value: "false"
230229
- name: PILOT_ENABLE_GATEWAY_API_DEPLOYMENT_CONTROLLER
231230
value: "false"
232-
{{- if not .Values.global.enableHigressIstio }}
233231
- name: CUSTOM_CA_CERT_NAME
234232
value: "higress-ca-root-cert"
235-
{{- end }}
236233
{{- if not (or .Values.global.local .Values.global.kind) }}
237234
resources:
238235
{{- if .Values.pilot.resources }}
@@ -269,7 +266,6 @@ spec:
269266
- name: extracacerts
270267
mountPath: /cacerts
271268
{{- end }}
272-
{{- end }}
273269
{{- with .Values.controller.nodeSelector }}
274270
nodeSelector:
275271
{{- toYaml . | nindent 8 }}
@@ -285,7 +281,6 @@ spec:
285281
volumes:
286282
- name: log
287283
emptyDir: {}
288-
{{- if not .Values.global.enableHigressIstio }}
289284
- name: config
290285
configMap:
291286
name: higress-config
@@ -317,4 +312,3 @@ spec:
317312
configMap:
318313
name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
319314
{{- end }}
320-
{{- end }}

helm/core/templates/controller-service.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ spec:
99
type: {{ .Values.controller.service.type }}
1010
ports:
1111
{{- toYaml .Values.controller.ports | nindent 4 }}
12-
{{- if not .Values.global.enableHigressIstio }}
1312
- port: 15010
1413
name: grpc-xds # plaintext
1514
protocol: TCP
@@ -23,6 +22,5 @@ spec:
2322
- port: 15014
2423
name: http-monitoring # prometheus stats
2524
protocol: TCP
26-
{{- end }}
2725
selector:
2826
{{- include "controller.selectorLabels" . | nindent 4 }}

helm/core/values.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ global:
4040
enableIstioAPI: true
4141
# -- If true, Higress Controller will monitor Gateway API resources as well
4242
enableGatewayAPI: false
43-
# Deprecated
44-
enableHigressIstio: false
4543
# -- Used to locate istiod.
4644
istioNamespace: istio-system
4745
# -- enable pod disruption budget for the control plane, which is used to

helm/higress/Chart.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
- name: higress-core
33
repository: file://../core
4-
version: 2.0.3
4+
version: 2.0.4
55
- name: higress-console
66
repository: https://higress.io/helm-charts/
7-
version: 1.4.5
8-
digest: sha256:74b772113264168483961f5d0424459fd7359adc509a4b50400229581d7cddbf
9-
generated: "2024-11-08T14:06:51.871719+08:00"
7+
version: 1.4.6
8+
digest: sha256:ec570ac7ae8a6de976e7ffafaadae4a33beeabfb4b13debe63e0cfa100e2eb8c
9+
generated: "2024-12-06T11:34:04.628976+08:00"

helm/higress/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: 2.0.3
2+
appVersion: 2.0.4
33
description: Helm chart for deploying Higress gateways
44
icon: https://higress.io/img/higress_logo_small.png
55
home: http://higress.io/
@@ -12,9 +12,9 @@ sources:
1212
dependencies:
1313
- name: higress-core
1414
repository: "file://../core"
15-
version: 2.0.3
15+
version: 2.0.4
1616
- name: higress-console
1717
repository: "https://higress.io/helm-charts/"
18-
version: 1.4.5
18+
version: 1.4.6
1919
type: application
20-
version: 2.0.3
20+
version: 2.0.4

helm/higress/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,6 @@ The command removes all the Kubernetes components associated with the chart and
159159
| global.disableAlpnH2 | bool | `false` | Whether to disable HTTP/2 in ALPN |
160160
| global.enableGatewayAPI | bool | `false` | If true, Higress Controller will monitor Gateway API resources as well |
161161
| global.enableH3 | bool | `false` | |
162-
| global.enableHigressIstio | bool | `false` | |
163162
| global.enableIPv6 | bool | `false` | |
164163
| global.enableIstioAPI | bool | `true` | If true, Higress Controller will monitor istio resources as well |
165164
| global.enableProxyProtocol | bool | `false` | |

0 commit comments

Comments
 (0)