-
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.
* create new integration/source folder and factor common code into helper.go Signed-off-by: Matthias Wessendorf <[email protected]> * 💄 improve formatting... Signed-off-by: Matthias Wessendorf <[email protected]> * fixing import Signed-off-by: Matthias Wessendorf <[email protected]> * First Sink Signed-off-by: Matthias Wessendorf <[email protected]> * Updates on sink Signed-off-by: Matthias Wessendorf <[email protected]> * starting common types for source Signed-off-by: Matthias Wessendorf <[email protected]> * starting common types for sink Signed-off-by: Matthias Wessendorf <[email protected]> * some code share and refactorings * use other image coordinates Signed-off-by: Matthias Wessendorf <[email protected]> * Add missing api and tests for sink and run codegen Signed-off-by: Matthias Wessendorf <[email protected]> * Fixes Signed-off-by: Matthias Wessendorf <[email protected]> * Adding cert Signed-off-by: Matthias Wessendorf <[email protected]> * Adding test Signed-off-by: Matthias Wessendorf <[email protected]> * Rekt test for sink Signed-off-by: Matthias Wessendorf <[email protected]> * Rekt test for sink Signed-off-by: Matthias Wessendorf <[email protected]> * correct status code Signed-off-by: Matthias Wessendorf <[email protected]> * More... Signed-off-by: Matthias Wessendorf <[email protected]> * re-add service Signed-off-by: Matthias Wessendorf <[email protected]> * delete unversioned common api Signed-off-by: Matthias Wessendorf <[email protected]> * Updates, latest conflicts and formatting Clean ups Adding tests for reconciler Signed-off-by: Matthias Wessendorf <[email protected]> --------- Signed-off-by: Matthias Wessendorf <[email protected]>
- Loading branch information
Showing
51 changed files
with
4,631 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
core/resources/integrationsink.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,48 @@ | ||
# 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 | ||
# | ||
# http://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: cert-manager.io/v1 | ||
kind: Certificate | ||
metadata: | ||
name: integration-sink-server-tls | ||
namespace: knative-eventing | ||
spec: | ||
# Secret names are always required. | ||
secretName: integration-sink-server-tls | ||
|
||
secretTemplate: | ||
labels: | ||
app.kubernetes.io/component: integration-sink | ||
app.kubernetes.io/name: knative-eventing | ||
|
||
# Use 0m0s so that we don't run into https://github.com/cert-manager/cert-manager/issues/6408 on the operator | ||
duration: 2160h0m0s # 90d | ||
renewBefore: 360h0m0s # 15d | ||
subject: | ||
organizations: | ||
- local | ||
privateKey: | ||
algorithm: RSA | ||
encoding: PKCS1 | ||
size: 2048 | ||
rotationPolicy: Always | ||
|
||
dnsNames: | ||
- integration-sink.knative-eventing.svc.cluster.local | ||
- integration-sink.knative-eventing.svc | ||
|
||
issuerRef: | ||
name: knative-eventing-ca-issuer | ||
kind: ClusterIssuer | ||
group: cert-manager.io |
Large diffs are not rendered by default.
Oops, something went wrong.
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.