forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
114 lines (96 loc) · 3.85 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
Copyright 2018 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 main
import (
"flag"
"log"
"k8s.io/client-go/tools/clientcmd"
"go.uber.org/zap"
"github.com/knative/pkg/configmap"
"github.com/knative/pkg/logging/logkey"
"github.com/knative/pkg/signals"
"github.com/knative/pkg/system"
"github.com/knative/pkg/version"
"github.com/knative/pkg/webhook"
kpa "github.com/knative/serving/pkg/apis/autoscaling/v1alpha1"
net "github.com/knative/serving/pkg/apis/networking/v1alpha1"
"github.com/knative/serving/pkg/apis/serving/v1alpha1"
"github.com/knative/serving/pkg/logging"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/client-go/kubernetes"
)
const (
component = "webhook"
)
var (
masterURL = flag.String("master", "", "The address of the Kubernetes API server. Overrides any value in kubeconfig. Only required if out-of-cluster.")
kubeconfig = flag.String("kubeconfig", "", "Path to a kubeconfig. Only required if out-of-cluster.")
)
func main() {
flag.Parse()
cm, err := configmap.Load("/etc/config-logging")
if err != nil {
log.Fatalf("Error loading logging configuration: %v", err)
}
config, err := logging.NewConfigFromMap(cm)
if err != nil {
log.Fatalf("Error parsing logging configuration: %v", err)
}
logger, atomicLevel := logging.NewLoggerFromConfig(config, component)
defer logger.Sync()
logger = logger.With(zap.String(logkey.ControllerType, component))
logger.Info("Starting the Configuration Webhook")
// Set up signals so we handle the first shutdown signal gracefully.
stopCh := signals.SetupSignalHandler()
clusterConfig, err := clientcmd.BuildConfigFromFlags(*masterURL, *kubeconfig)
if err != nil {
logger.Fatalw("Failed to get cluster config", zap.Error(err))
}
kubeClient, err := kubernetes.NewForConfig(clusterConfig)
if err != nil {
logger.Fatalw("Failed to get the client set", zap.Error(err))
}
if err := version.CheckMinimumVersion(kubeClient.Discovery()); err != nil {
logger.Fatalf("Version check failed: %v", err)
}
// Watch the logging config map and dynamically update logging levels.
configMapWatcher := configmap.NewInformedWatcher(kubeClient, system.Namespace())
configMapWatcher.Watch(logging.ConfigName, logging.UpdateLevelFromConfigMap(logger, atomicLevel, component))
if err = configMapWatcher.Start(stopCh); err != nil {
logger.Fatalw("Failed to start the ConfigMap watcher", zap.Error(err))
}
options := webhook.ControllerOptions{
ServiceName: "webhook",
DeploymentName: "webhook",
Namespace: system.Namespace(),
Port: 443,
SecretName: "webhook-certs",
WebhookName: "webhook.serving.knative.dev",
}
controller := webhook.AdmissionController{
Client: kubeClient,
Options: options,
Handlers: map[schema.GroupVersionKind]webhook.GenericCRD{
v1alpha1.SchemeGroupVersion.WithKind("Revision"): &v1alpha1.Revision{},
v1alpha1.SchemeGroupVersion.WithKind("Configuration"): &v1alpha1.Configuration{},
v1alpha1.SchemeGroupVersion.WithKind("Route"): &v1alpha1.Route{},
v1alpha1.SchemeGroupVersion.WithKind("Service"): &v1alpha1.Service{},
kpa.SchemeGroupVersion.WithKind("PodAutoscaler"): &kpa.PodAutoscaler{},
net.SchemeGroupVersion.WithKind("ClusterIngress"): &net.ClusterIngress{},
},
Logger: logger,
}
if err = controller.Run(stopCh); err != nil {
logger.Fatalw("Failed to start the admission controller", zap.Error(err))
}
}