Skip to content

Commit

Permalink
Update eventing nightly and Install Eventing core TLS test resources (#…
Browse files Browse the repository at this point in the history
…3908)

* Update eventing nightly

bumping knative.dev/eventing 4a3f65d...74253dd:
  > 74253dd [main] Upgrade to latest dependencies (# 7932)
  > 68920d2 Fix log message for recordevents receiver (# 7936)
  > 9c0f9cc Update eventtype CRD to include `.spec.reference.address` (# 7935)
  > b5f92c2 Copy message before passing it to eventtype autocreate handler (# 7934)
  > 0e14da4 fix(test): the attribute filter transform test correctly compares slices now (# 7931)
  > 5355171 Fix trust bundle propagation (# 7924)
  > 15be248 CrossNamespace: Data Plane Changes for Broker Filter (# 7913)
  > 34f9e43 CrossNamespace: Control Plane Changes for Trigger (# 7889)
  > 308e6b6 SubjectAccessReviews resources correction (# 7925)
  > 9cdc7ba CrossNamespace: Update knsubscribe permissions (# 7926)
  > dbaaedc [main] Update actions (# 7923)
  > 3ea1900 [main] Upgrade to latest dependencies (# 7922)
  > 3189fc2 Add attribute filter transform function (# 7909)
  > 3541408 Make transport-encryption a Beta feature (# 7915)
  > 884f0da Adding uname name mapping for x86_64 in hack/install.sh (# 7917)
  > 6b6f6d1 Sequence and Parallel: announce correct OIDC identities in authstatus (# 7902)
  > 58d7920 Fix IMC metrics for transport encryption (# 7904)
  > 4358574 CrossNamespace: Testing Code Style (# 7918)
  > 4951b74 [main] Upgrade to latest dependencies (# 7920)
  > 1572967 Map subscription to graph edges (# 7880)
  > 72585c9 CrossNamespace: Control Plane Changes for Subscription (# 7882)
  > 599c548 Assert EventTypes references for IMC test (# 7899)
  > 1cc8179 Remove SelfSigned issuer from released `transport-encryption` artifacts (# 7905)
  > 4f32823 Refactor NewFiltersFeatureSet to prevent starvation (# 7911)
  > fa46a45 feat: added fake client reactor for subject access reviews (# 7908)
  > 1ce7074 Fix trust bundle propagation already exists error (# 7906)
  > e9b3af6 Update e2e tests for OIDC sender identity matching to be a bit more resilient (# 7903)
  > 1e6e235 fix: trigger tests set annotations correctly now (# 7887)
  > 159d6fc [main] Upgrade to latest dependencies (# 7901)
  > c7401a1 Add e2e test to verify used sender identity is correct (# 7900)
  > 96e5c18 [main] Update community files (# 7897)
  > c3a1c19 EventType tests verify the type under spec.reference  (# 7888)
  > c104df5 [main] Upgrade to latest dependencies (# 7894)
  > 07ebf11 [main] Upgrade to latest dependencies (# 7891)
  > 0e165f2 Containersource use OIDC identity of corresponding SinkBinding (# 7890)
  > 3dfe973 Add SubscriptionsAPI filters to APIServerSource (# 7799)
  > 11a1ad4 feat: added sources to event lineage graph constructor (# 7881)
  > 217f7a3 Create validation function for cross namespace referencing (# 7812)

Signed-off-by: Knative Automation <automation@knative.team>

* Install Eventing core TLS test resources

Signed-off-by: Pierangelo Di Pilato <pierdipi@redhat.com>

---------

Signed-off-by: Knative Automation <automation@knative.team>
Signed-off-by: Pierangelo Di Pilato <pierdipi@redhat.com>
Co-authored-by: Knative Automation <automation@knative.team>
  • Loading branch information
pierDipi and knative-automation committed May 30, 2024
1 parent 97732b7 commit 3bec54f
Show file tree
Hide file tree
Showing 11 changed files with 390 additions and 223 deletions.
3 changes: 3 additions & 0 deletions hack/tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ import (
_ "knative.dev/eventing/test/test_images/wathola-receiver"
_ "knative.dev/eventing/test/test_images/wathola-sender"

// For TLS testing
_ "knative.dev/eventing/test/config/tls"

// For chaos testing the leader election.
_ "knative.dev/pkg/leaderelection/chaosduck"

Expand Down
6 changes: 6 additions & 0 deletions test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ function install_eventing_core() {
kubectl apply -f "${KNATIVE_EVENTING_RELEASE_TLS}"
fi

install_eventing_core_test_tls_resources || return $?

kubectl patch horizontalpodautoscalers.autoscaling -n knative-eventing eventing-webhook -p '{"spec": {"minReplicas": '${REPLICAS}'}}'
}

Expand Down Expand Up @@ -515,3 +517,7 @@ function setup_kafka_channel_auth() {
-p='[{"op": "remove", "path": "/data/auth.secret.ref.name"}, {"op": "remove", "path": "/data/auth.secret.ref.namespace"}]' || true
fi
}

function install_eventing_core_test_tls_resources() {
ko apply -Rf "${repo_root_dir}/vendor/knative.dev/eventing/test/config/tls" || return $?
}
Loading

0 comments on commit 3bec54f

Please sign in to comment.