Skip to content

chore(chart-deps): update gateway to version 1.27.0 #2446

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chart/chart-index/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
repository: https://istio-release.storage.googleapis.com/charts
- name: gateway
alias: istio-gateway
version: 1.26.1
version: 1.27.0
repository: https://istio-release.storage.googleapis.com/charts
- name: istiod
version: 1.26.1
Expand Down
4 changes: 2 additions & 2 deletions charts/istio-gateway/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: 1.26.1
appVersion: 1.27.0
description: Helm chart for deploying Istio gateways
icon: https://istio.io/latest/favicons/android-192x192.png
keywords:
Expand All @@ -9,4 +9,4 @@ name: gateway
sources:
- https://github.com/istio/istio
type: application
version: 1.26.1
version: 1.27.0
7 changes: 7 additions & 0 deletions charts/istio-gateway/files/profile-ambient.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ meshConfig:
defaultConfig:
proxyMetadata:
ISTIO_META_ENABLE_HBONE: "true"
serviceScopeConfigs:
- servicesSelector:
matchExpressions:
- key: istio.io/global
operator: In
values: ["true"]
scope: GLOBAL
global:
variant: distroless
pilot:
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ pilot:
env:
# 1.24 behavioral changes
PILOT_ENABLE_IP_AUTOALLOCATE: "false"
# 1.27 behavioral changes
ENABLE_NATIVE_SIDECARS: "false"
ambient:
dnsCapture: false
reconcileIptablesOnStartup: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
# The original version of this file is located at /manifests/helm-profiles directory.
# If you want to make a change in this file, edit the original one and run "make gen".

pilot:
env:
# 1.27 behavioral changes
ENABLE_NATIVE_SIDECARS: "false"
ambient:
# 1.26 behavioral changes
shareHostNetworkNamespace: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# WARNING: DO NOT EDIT, THIS FILE IS A COPY.
# The original version of this file is located at /manifests/helm-profiles directory.
# If you want to make a change in this file, edit the original one and run "make gen".

pilot:
env:
# 1.27 behavioral changes
ENABLE_NATIVE_SIDECARS: "false"
14 changes: 14 additions & 0 deletions charts/istio-gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ spec:
volumes:
{{ toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.initContainers }}
initContainers:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: istio-proxy
# "auto" will be populated at runtime by the mutating webhook. See https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection
Expand Down Expand Up @@ -95,6 +99,9 @@ spec:
- name: {{ $key }}
value: {{ $val | quote }}
{{- end }}
{{- with .Values.envVarFrom }}
{{- toYaml . | nindent 10 }}
{{- end }}
ports:
- containerPort: 15090
protocol: TCP
Expand All @@ -109,6 +116,13 @@ spec:
readinessProbe:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.lifecycle }}
lifecycle:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.additionalContainers }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
11 changes: 11 additions & 0 deletions charts/istio-gateway/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,17 @@
},
"priorityClassName": {
"type": "string"
},
"lifecycle": {
"type": "object",
"properties": {
"postStart": {
"type": "object"
},
"preStop": {
"type": "object"
}
}
}
}
}
Expand Down
22 changes: 22 additions & 0 deletions charts/istio-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,18 @@ _internal_defaults_do_not_set:
# Pod environment variables
env: {}

# Use envVarFrom to define full environment variable entries with complex sources,
# such as valueFrom.secretKeyRef, valueFrom.configMapKeyRef. Each item must include a `name` and `valueFrom`.
#
# Example:
# envVarFrom:
# - name: EXAMPLE_SECRET
# valueFrom:
# secretKeyRef:
# name: example-name
# key: example-key
envVarFrom: []

# Deployment Update strategy
strategy: {}

Expand Down Expand Up @@ -163,8 +175,18 @@ _internal_defaults_do_not_set:
# https://kubernetes.io/docs/concepts/storage/volumes/.
volumeMounts: []

# Inject initContainers into the Gateway Pods.
initContainers: []

# Inject additional containers into the Gateway Pods.
additionalContainers: []

# Configure this to a higher priority class in order to make sure your Istio gateway pods
# will not be killed because of low priority class.
# Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
# for more detail.
priorityClassName: ""

# Configure the lifecycle hooks for the gateway. See
# https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/.
lifecycle: {}