This file contains hidden or 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
diff --git a/staging/src/k8s.io/client-go/testing/fixture.go b/staging/src/k8s.io/client-go/testing/fixture.go | |
index 878ae7403ea..6662424f917 100644 | |
--- a/staging/src/k8s.io/client-go/testing/fixture.go | |
+++ b/staging/src/k8s.io/client-go/testing/fixture.go | |
@@ -22,6 +22,7 @@ import ( | |
"sort" | |
"strings" | |
"sync" | |
+ "time" | |
This file contains hidden or 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
diff --git a/.gitignore b/.gitignore | |
index 2ddc5a8b..4b09af17 100644 | |
--- a/.gitignore | |
+++ b/.gitignore | |
@@ -28,3 +28,5 @@ tools/setup-envtest/out | |
junit-report.xml | |
/artifacts | |
+ | |
+examples/kcp/.gitignore |
This file contains hidden or 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
commit a755b09e49a3fd44a5a6fdbbd441eb9366cdf475 | |
Author: Dr. Stefan Schimanski <[email protected]> | |
Date: Tue Feb 11 22:15:16 2025 +0100 | |
Add fair queue | |
Signed-off-by: Dr. Stefan Schimanski <[email protected]> | |
diff --git a/pkg/builder/controller.go b/pkg/builder/controller.go | |
index 47b519e..1902a20 100644 |
This file contains hidden or 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
diff --git a/pkg/registry/rbac/validation/kcp.go b/pkg/registry/rbac/validation/kcp.go | |
index 6695bcb42e9..6fdab0846cf 100644 | |
--- a/pkg/registry/rbac/validation/kcp.go | |
+++ b/pkg/registry/rbac/validation/kcp.go | |
@@ -2,6 +2,7 @@ package validation | |
import ( | |
"context" | |
+ "fmt" | |
"strings" |
This file contains hidden or 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
diff --git a/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go b/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go | |
index 89bc580cc..5e6bf42a2 100644 | |
--- a/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go | |
+++ b/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go | |
@@ -57,8 +57,8 @@ const ( | |
// NewAPIBinder returns a new controller which instantiates APIBindings and waits for them to be fully bound | |
// in new Workspaces. | |
func NewAPIBinder( | |
- kcpClusterClient kcpclientset.ClusterInterface, | |
- logicalClusterInformer corev1alpha1informers.LogicalClusterClusterInformer, |
This file contains hidden or 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
diff --git a/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go b/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go | |
index 89bc580cc..e7df15dd8 100644 | |
--- a/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go | |
+++ b/pkg/reconciler/tenancy/initialization/apibinder_initializer_controller.go | |
@@ -57,8 +57,8 @@ const ( | |
// NewAPIBinder returns a new controller which instantiates APIBindings and waits for them to be fully bound | |
// in new Workspaces. | |
func NewAPIBinder( | |
- kcpClusterClient kcpclientset.ClusterInterface, | |
- logicalClusterInformer corev1alpha1informers.LogicalClusterClusterInformer, |
This file contains hidden or 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
diff --git a/staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go b/staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go | |
index b00b97b29e3..ca61e7b7ab1 100644 | |
--- a/staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go | |
+++ b/staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go | |
@@ -45,7 +45,6 @@ import ( | |
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" | |
"k8s.io/apimachinery/pkg/runtime" | |
"k8s.io/apimachinery/pkg/runtime/schema" | |
- utilerrors "k8s.io/apimachinery/pkg/util/errors" | |
"k8s.io/apimachinery/pkg/util/uuid" |
This file contains hidden or 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
commit 35652e53928c351644c70b3448ca17040d494898 | |
Author: Dr. Stefan Schimanski <[email protected]> | |
Date: Fri Dec 13 15:08:10 2024 +0100 | |
Fix option mutation | |
Signed-off-by: Dr. Stefan Schimanski <[email protected]> | |
diff --git a/pkg/controlplane/apiserver/config.go b/pkg/controlplane/apiserver/config.go | |
index 0137e7be961..dd1e0efe15d 100644 |
This file contains hidden or 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
import requests | |
def call_webhook(): | |
url = "https://webhook.site/a38d67a3-a94a-4621-a5cb-779f9347f959" | |
payload = { | |
"message": "Hello, Webhook!", | |
"status": "success" | |
} | |
headers = { | |
"Content-Type": "application/json" | |
} |
This file contains hidden or 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
[33mNAME LIST CREATE UPDATE DELETE[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m | |
[33m ✖ ✖ ✖ ✖[0m |
NewerOlder