This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from FabianKramm/master
allow webhooks for spaces & accounts
- Loading branch information
Showing
88 changed files
with
19,389 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,8 @@ replicaCount: 1 | |
|
||
env: {} | ||
|
||
nodeSelector: {} | ||
|
||
readinessProbe: | ||
enabled: true | ||
|
||
|
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,76 @@ | ||
/* | ||
Copyright 2018 The Kubernetes 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 admission | ||
|
||
import ( | ||
"io/ioutil" | ||
"net/http" | ||
"time" | ||
|
||
"k8s.io/klog/v2" | ||
|
||
utilwait "k8s.io/apimachinery/pkg/util/wait" | ||
"k8s.io/apiserver/pkg/admission" | ||
webhookinit "k8s.io/apiserver/pkg/admission/plugin/webhook/initializer" | ||
genericapiserver "k8s.io/apiserver/pkg/server" | ||
"k8s.io/apiserver/pkg/server/egressselector" | ||
"k8s.io/apiserver/pkg/util/webhook" | ||
cacheddiscovery "k8s.io/client-go/discovery/cached/memory" | ||
externalinformers "k8s.io/client-go/informers" | ||
"k8s.io/client-go/kubernetes" | ||
"k8s.io/client-go/rest" | ||
"k8s.io/client-go/restmapper" | ||
) | ||
|
||
// Config holds the configuration needed to for initialize the admission plugins | ||
type Config struct { | ||
CloudConfigFile string | ||
LoopbackClientConfig *rest.Config | ||
ExternalInformers externalinformers.SharedInformerFactory | ||
} | ||
|
||
// New sets up the plugins and admission start hooks needed for admission | ||
func (c *Config) New(proxyTransport *http.Transport, egressSelector *egressselector.EgressSelector, serviceResolver webhook.ServiceResolver) ([]admission.PluginInitializer, genericapiserver.PostStartHookFunc, error) { | ||
webhookAuthResolverWrapper := webhook.NewDefaultAuthenticationInfoResolverWrapper(proxyTransport, egressSelector, c.LoopbackClientConfig) | ||
webhookPluginInitializer := webhookinit.NewPluginInitializer(webhookAuthResolverWrapper, serviceResolver) | ||
|
||
var cloudConfig []byte | ||
if c.CloudConfigFile != "" { | ||
var err error | ||
cloudConfig, err = ioutil.ReadFile(c.CloudConfigFile) | ||
if err != nil { | ||
klog.Fatalf("Error reading from cloud configuration file %s: %#v", c.CloudConfigFile, err) | ||
} | ||
} | ||
clientset, err := kubernetes.NewForConfig(c.LoopbackClientConfig) | ||
if err != nil { | ||
return nil, nil, err | ||
} | ||
|
||
discoveryClient := cacheddiscovery.NewMemCacheClient(clientset.Discovery()) | ||
discoveryRESTMapper := restmapper.NewDeferredDiscoveryRESTMapper(discoveryClient) | ||
kubePluginInitializer := NewPluginInitializer( | ||
cloudConfig, | ||
discoveryRESTMapper, | ||
nil, | ||
) | ||
|
||
admissionPostStartHook := func(context genericapiserver.PostStartHookContext) error { | ||
discoveryRESTMapper.Reset() | ||
go utilwait.Until(discoveryRESTMapper.Reset, 30*time.Second, context.StopCh) | ||
return nil | ||
} | ||
|
||
return []admission.PluginInitializer{webhookPluginInitializer, kubePluginInitializer}, admissionPostStartHook, nil | ||
} |
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,73 @@ | ||
/* | ||
Copyright 2016 The Kubernetes 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 admission | ||
|
||
import ( | ||
"k8s.io/apimachinery/pkg/api/meta" | ||
"k8s.io/apiserver/pkg/admission" | ||
"k8s.io/apiserver/pkg/admission/initializer" | ||
quota "k8s.io/apiserver/pkg/quota/v1" | ||
) | ||
|
||
// TODO add a `WantsToRun` which takes a stopCh. Might make it generic. | ||
|
||
// WantsCloudConfig defines a function which sets CloudConfig for admission plugins that need it. | ||
type WantsCloudConfig interface { | ||
SetCloudConfig([]byte) | ||
} | ||
|
||
// WantsRESTMapper defines a function which sets RESTMapper for admission plugins that need it. | ||
type WantsRESTMapper interface { | ||
SetRESTMapper(meta.RESTMapper) | ||
} | ||
|
||
// PluginInitializer is used for initialization of the Kubernetes specific admission plugins. | ||
type PluginInitializer struct { | ||
cloudConfig []byte | ||
restMapper meta.RESTMapper | ||
quotaConfiguration quota.Configuration | ||
} | ||
|
||
var _ admission.PluginInitializer = &PluginInitializer{} | ||
|
||
// NewPluginInitializer constructs new instance of PluginInitializer | ||
// TODO: switch these parameters to use the builder pattern or just make them | ||
// all public, this construction method is pointless boilerplate. | ||
func NewPluginInitializer( | ||
cloudConfig []byte, | ||
restMapper meta.RESTMapper, | ||
quotaConfiguration quota.Configuration, | ||
) *PluginInitializer { | ||
return &PluginInitializer{ | ||
cloudConfig: cloudConfig, | ||
restMapper: restMapper, | ||
quotaConfiguration: quotaConfiguration, | ||
} | ||
} | ||
|
||
// Initialize checks the initialization interfaces implemented by each plugin | ||
// and provide the appropriate initialization data | ||
func (i *PluginInitializer) Initialize(plugin admission.Interface) { | ||
if wants, ok := plugin.(WantsCloudConfig); ok { | ||
wants.SetCloudConfig(i.cloudConfig) | ||
} | ||
|
||
if wants, ok := plugin.(WantsRESTMapper); ok { | ||
wants.SetRESTMapper(i.restMapper) | ||
} | ||
|
||
if wants, ok := plugin.(initializer.WantsQuotaConfiguration); ok { | ||
wants.SetQuotaConfiguration(i.quotaConfiguration) | ||
} | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.