mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-14 02:10:21 +00:00
53 lines
1.4 KiB
Go
53 lines
1.4 KiB
Go
/*
|
|
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 main
|
|
|
|
import (
|
|
"flag"
|
|
"net/http"
|
|
|
|
"k8s.io/kubernetes/test/images/crd-conversion-webhook/converter"
|
|
)
|
|
|
|
// Config contains the server (the webhook) cert and key.
|
|
type Config struct {
|
|
CertFile string
|
|
KeyFile string
|
|
}
|
|
|
|
func (c *Config) addFlags() {
|
|
flag.StringVar(&c.CertFile, "tls-cert-file", c.CertFile, ""+
|
|
"File containing the default x509 Certificate for HTTPS. (CA cert, if any, concatenated "+
|
|
"after server cert).")
|
|
flag.StringVar(&c.KeyFile, "tls-private-key-file", c.KeyFile, ""+
|
|
"File containing the default x509 private key matching --tls-cert-file.")
|
|
}
|
|
|
|
func main() {
|
|
var config Config
|
|
config.addFlags()
|
|
flag.Parse()
|
|
|
|
http.HandleFunc("/crdconvert", converter.ServeExampleConvert)
|
|
clientset := getClient()
|
|
server := &http.Server{
|
|
Addr: ":443",
|
|
TLSConfig: configTLS(config, clientset),
|
|
}
|
|
server.ListenAndServeTLS("", "")
|
|
}
|