-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-1.10] Upgrade to latest dependencies (#7144)
upgrade to latest dependencies bumping knative.dev/reconciler-test ca17404...70df278: > 70df278 Knative Service forwarder for EventsHub (# 517) (# 566) > 7f95e17 eventshub RBAC resources independent to avoid deletion conflicts (# 538) (# 565) > 288a740 Fix unit tests (# 556) Signed-off-by: Knative Automation <[email protected]>
- Loading branch information
1 parent
1b3281e
commit 7de3ecc
Showing
18 changed files
with
443 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
vendor/knative.dev/reconciler-test/pkg/eventshub/104-forwarder.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Copyright 2023 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. | ||
|
||
apiVersion: serving.knative.dev/v1 | ||
kind: Service | ||
metadata: | ||
name: {{ .name }} | ||
namespace: {{ .namespace }} | ||
{{ if .annotations }} | ||
annotations: | ||
{{ range $key, $value := .annotations }} | ||
{{ $key }}: "{{ $value }}" | ||
{{ end }} | ||
{{ end }} | ||
spec: | ||
template: | ||
{{ if .podannotations }} | ||
annotations: | ||
{{ range $key, $value := .podannotations }} | ||
{{ $key }}: "{{ $value }}" | ||
{{ end }} | ||
{{ end }} | ||
spec: | ||
serviceAccountName: "{{ .namespace }}" | ||
containers: | ||
- name: eventshub-forwarder | ||
image: {{ .image }} | ||
imagePullPolicy: "IfNotPresent" | ||
env: | ||
- name: "NAME" | ||
value: {{ .name }} | ||
- name: "NAMESPACE" | ||
value: {{ .namespace }} | ||
- name: "SINK" | ||
value: {{ .sink }} | ||
{{ range $key, $value := .envs }} | ||
- name: {{printf "%q" $key}} | ||
value: {{printf "%q" $value}} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.