This repository has been archived by the owner on Jun 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Produced via: `./hack/update-deps.sh --upgrade && ./hack/update-codegen.sh` /assign grantr nachocano /cc grantr nachocano
- Loading branch information
Showing
14 changed files
with
206 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
38 changes: 38 additions & 0 deletions
38
...or/knative.dev/pkg/injection/clients/namespacedkube/informers/core/v1/secret/fake/fake.go
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,38 @@ | ||
/* | ||
Copyright 2020 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. | ||
*/ | ||
|
||
package fake | ||
|
||
import ( | ||
context "context" | ||
|
||
controller "knative.dev/pkg/controller" | ||
injection "knative.dev/pkg/injection" | ||
secret "knative.dev/pkg/injection/clients/namespacedkube/informers/core/v1/secret" | ||
fake "knative.dev/pkg/injection/clients/namespacedkube/informers/factory/fake" | ||
) | ||
|
||
var Get = secret.Get | ||
|
||
func init() { | ||
injection.Fake.RegisterInformer(withInformer) | ||
} | ||
|
||
func withInformer(ctx context.Context) (context.Context, controller.Informer) { | ||
f := fake.Get(ctx) | ||
inf := f.Core().V1().Secrets() | ||
return context.WithValue(ctx, secret.Key{}, inf), inf.Informer() | ||
} |
50 changes: 50 additions & 0 deletions
50
vendor/knative.dev/pkg/injection/clients/namespacedkube/informers/core/v1/secret/secret.go
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 2020 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. | ||
*/ | ||
|
||
package secret | ||
|
||
import ( | ||
context "context" | ||
|
||
v1 "k8s.io/client-go/informers/core/v1" | ||
controller "knative.dev/pkg/controller" | ||
injection "knative.dev/pkg/injection" | ||
factory "knative.dev/pkg/injection/clients/namespacedkube/informers/factory" | ||
logging "knative.dev/pkg/logging" | ||
) | ||
|
||
func init() { | ||
injection.Default.RegisterInformer(withInformer) | ||
} | ||
|
||
// Key is used for associating the Informer inside the context.Context. | ||
type Key struct{} | ||
|
||
func withInformer(ctx context.Context) (context.Context, controller.Informer) { | ||
f := factory.Get(ctx) | ||
inf := f.Core().V1().Secrets() | ||
return context.WithValue(ctx, Key{}, inf), inf.Informer() | ||
} | ||
|
||
// Get extracts the typed informer from the context. | ||
func Get(ctx context.Context) v1.SecretInformer { | ||
untyped := ctx.Value(Key{}) | ||
if untyped == nil { | ||
logging.FromContext(ctx).Panic( | ||
"Unable to fetch k8s.io/client-go/informers/core/v1.SecretInformer from context.") | ||
} | ||
return untyped.(v1.SecretInformer) | ||
} |
53 changes: 53 additions & 0 deletions
53
vendor/knative.dev/pkg/injection/clients/namespacedkube/informers/factory/factory.go
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,53 @@ | ||
/* | ||
Copyright 2020 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. | ||
*/ | ||
|
||
package factory | ||
|
||
import ( | ||
context "context" | ||
|
||
informers "k8s.io/client-go/informers" | ||
client "knative.dev/pkg/client/injection/kube/client" | ||
controller "knative.dev/pkg/controller" | ||
injection "knative.dev/pkg/injection" | ||
logging "knative.dev/pkg/logging" | ||
"knative.dev/pkg/system" | ||
) | ||
|
||
func init() { | ||
injection.Default.RegisterInformerFactory(withInformerFactory) | ||
} | ||
|
||
// Key is used as the key for associating information with a context.Context. | ||
type Key struct{} | ||
|
||
func withInformerFactory(ctx context.Context) context.Context { | ||
c := client.Get(ctx) | ||
return context.WithValue(ctx, Key{}, | ||
informers.NewSharedInformerFactoryWithOptions(c, controller.GetResyncPeriod(ctx), | ||
// This factory scopes things to the system namespace. | ||
informers.WithNamespace(system.Namespace()))) | ||
} | ||
|
||
// Get extracts the InformerFactory from the context. | ||
func Get(ctx context.Context) informers.SharedInformerFactory { | ||
untyped := ctx.Value(Key{}) | ||
if untyped == nil { | ||
logging.FromContext(ctx).Panic( | ||
"Unable to fetch k8s.io/client-go/informers.SharedInformerFactory from context.") | ||
} | ||
return untyped.(informers.SharedInformerFactory) | ||
} |
42 changes: 42 additions & 0 deletions
42
vendor/knative.dev/pkg/injection/clients/namespacedkube/informers/factory/fake/fake.go
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,42 @@ | ||
/* | ||
Copyright 2020 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. | ||
*/ | ||
|
||
package fake | ||
|
||
import ( | ||
context "context" | ||
|
||
informers "k8s.io/client-go/informers" | ||
fake "knative.dev/pkg/client/injection/kube/client/fake" | ||
controller "knative.dev/pkg/controller" | ||
injection "knative.dev/pkg/injection" | ||
factory "knative.dev/pkg/injection/clients/namespacedkube/informers/factory" | ||
"knative.dev/pkg/system" | ||
) | ||
|
||
var Get = factory.Get | ||
|
||
func init() { | ||
injection.Fake.RegisterInformerFactory(withInformerFactory) | ||
} | ||
|
||
func withInformerFactory(ctx context.Context) context.Context { | ||
c := fake.Get(ctx) | ||
return context.WithValue(ctx, factory.Key{}, | ||
informers.NewSharedInformerFactoryWithOptions(c, controller.GetResyncPeriod(ctx), | ||
// This factory scopes things to the system namespace. | ||
informers.WithNamespace(system.Namespace()))) | ||
} |
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
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 @@ | ||
istio-1.5.0 |
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