Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ba9d10c
chore(chart-deps): update knative-operator to version v1.22.0
svcAPLBot May 2, 2026
fc1cefc
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 4, 2026
a627e06
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 6, 2026
6712167
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 6, 2026
3ef49d9
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 6, 2026
3c1ece0
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 6, 2026
ce5642d
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 6, 2026
fb3ed67
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
0dcb1f0
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
9b8ac43
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
fd19fc8
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
f43d388
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
177e59d
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
bd1af73
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
0f00309
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 7, 2026
951030d
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
a73a6fd
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
df0c0de
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
38de012
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
6a41e17
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
34f7205
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
fb2c58a
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
62edfb8
Merge branch 'main' into ci-update-knative-operator-to-v1.22.0
svcAPLBot May 8, 2026
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 apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ appsInfo:
integration: The SSO login page for App Platform is served by Keycloak. Keycloak is used as an identity broker or provider for all App Platform integrated applications. By default Keycloak is configured as an Identity Broker. Keycloak is part of the core of App Platform and is always enabled.
knative:
title: Knative Operator
appVersion: 1.21.1
appVersion: 1.22.0
repo: https://github.com/knative/serving
maintainers: Knative
relatedLinks:
Expand Down
2 changes: 1 addition & 1 deletion chart/chart-index/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ dependencies:
version: 7.1.11
repository: https://codecentric.github.io/helm-charts
- name: knative-operator
version: v1.21.1
version: v1.22.0
repository: https://knative.github.io/operator
- name: kserve-crd
version: v0.16.0
Expand Down
2 changes: 1 addition & 1 deletion charts/knative-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ keywords:
name: knative-operator
sources:
- https://github.com/knative/operator
version: 1.21.1
version: 1.22.0
44 changes: 44 additions & 0 deletions charts/knative-operator/templates/access-providers-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Copyright 2025 The Knative Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

{{- $mc := .Values.knative_operator.multicluster | default dict }}
{{- if $mc.enabled }}
{{- if not $mc.accessProvidersConfig }}
{{- fail "knative_operator.multicluster.enabled is true but knative_operator.multicluster.accessProvidersConfig is empty; either provide an access-providers config or disable multi-cluster support" }}
{{- end }}
{{- $mountPaths := list }}
{{- range ($mc.plugins | default (list)) }}
{{- $mountPaths = append $mountPaths .mountPath }}
{{- end }}
{{- $cfg := $mc.accessProvidersConfig | default dict }}
{{- range ($cfg.providers | default (list)) }}
{{- $cmd := (.execConfig | default dict).command | default "" }}
{{- if $cmd }}
{{- $cmdDir := dir $cmd }}
{{- if not (has $cmdDir $mountPaths) }}
{{- fail (printf "provider %q: command dir %q does not match any plugins[].mountPath %v" .name $cmdDir $mountPaths) }}
{{- end }}
{{- end }}
{{- end }}
apiVersion: v1
kind: ConfigMap
metadata:
name: clusterprofile-provider-file
namespace: "{{ .Release.Namespace }}"
labels:
app.kubernetes.io/name: knative-operator
app.kubernetes.io/version: "{{ .Chart.Version }}"
data:
config.json: {{ $mc.accessProvidersConfig | default dict | mustToJson | quote }}
{{- end }}
3,608 changes: 3,608 additions & 0 deletions charts/knative-operator/templates/crds/knativeeventings.yaml

Large diffs are not rendered by default.

3,879 changes: 3,879 additions & 0 deletions charts/knative-operator/templates/crds/knativeservings.yaml

Large diffs are not rendered by default.

5,588 changes: 33 additions & 5,555 deletions charts/knative-operator/templates/operator.yaml

Large diffs are not rendered by default.

Loading
Loading