forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New command: gke-certificates-controller
This adds a new stand-alone certificates controller for use on GKE. It allows calling GKE to sign certificates instead of requiring the CA private key locally. It does not aim for 100% feature parity with kube-controller-manager yet, so for instance, leader election support is omitted.
- Loading branch information
Showing
12 changed files
with
556 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_binary", | ||
"go_library", | ||
) | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = ["main.go"], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//cmd/gke-certificates-controller/app:go_default_library", | ||
"//pkg/util/logs:go_default_library", | ||
"//pkg/version/verflag:go_default_library", | ||
"//vendor:github.com/spf13/pflag", | ||
"//vendor:k8s.io/apiserver/pkg/util/flag", | ||
], | ||
) | ||
|
||
filegroup( | ||
name = "package-srcs", | ||
srcs = glob(["**"]), | ||
tags = ["automanaged"], | ||
visibility = ["//visibility:private"], | ||
) | ||
|
||
filegroup( | ||
name = "all-srcs", | ||
srcs = [ | ||
":package-srcs", | ||
"//cmd/gke-certificates-controller/app:all-srcs", | ||
], | ||
tags = ["automanaged"], | ||
) | ||
|
||
go_binary( | ||
name = "gke-certificates-controller", | ||
library = ":go_default_library", | ||
tags = ["automanaged"], | ||
) |
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,8 @@ | ||
approvers: | ||
- pipejakob | ||
- mikedanese | ||
- roberthbailey | ||
reviewers: | ||
- pipejakob | ||
- mikedanese | ||
- roberthbailey |
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,60 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
licenses(["notice"]) | ||
|
||
load( | ||
"@io_bazel_rules_go//go:def.bzl", | ||
"go_library", | ||
"go_test", | ||
) | ||
|
||
go_library( | ||
name = "go_default_library", | ||
srcs = [ | ||
"gke_certificates_controller.go", | ||
"gke_signer.go", | ||
"options.go", | ||
], | ||
tags = ["automanaged"], | ||
deps = [ | ||
"//pkg/api:go_default_library", | ||
"//pkg/apis/certificates/install:go_default_library", | ||
"//pkg/apis/certificates/v1beta1:go_default_library", | ||
"//pkg/client/clientset_generated/clientset:go_default_library", | ||
"//pkg/client/informers/informers_generated/externalversions:go_default_library", | ||
"//pkg/controller:go_default_library", | ||
"//pkg/controller/certificates:go_default_library", | ||
"//vendor:github.com/golang/glog", | ||
"//vendor:github.com/spf13/cobra", | ||
"//vendor:github.com/spf13/pflag", | ||
"//vendor:k8s.io/apimachinery/pkg/apis/meta/v1", | ||
"//vendor:k8s.io/apimachinery/pkg/runtime/schema", | ||
"//vendor:k8s.io/apiserver/pkg/util/webhook", | ||
"//vendor:k8s.io/client-go/kubernetes/typed/core/v1", | ||
"//vendor:k8s.io/client-go/plugin/pkg/client/auth", | ||
"//vendor:k8s.io/client-go/rest", | ||
"//vendor:k8s.io/client-go/tools/clientcmd", | ||
"//vendor:k8s.io/client-go/tools/record", | ||
], | ||
) | ||
|
||
filegroup( | ||
name = "package-srcs", | ||
srcs = glob(["**"]), | ||
tags = ["automanaged"], | ||
visibility = ["//visibility:private"], | ||
) | ||
|
||
filegroup( | ||
name = "all-srcs", | ||
srcs = [":package-srcs"], | ||
tags = ["automanaged"], | ||
) | ||
|
||
go_test( | ||
name = "go_default_test", | ||
srcs = ["gke_signer_test.go"], | ||
library = ":go_default_library", | ||
tags = ["automanaged"], | ||
deps = ["//pkg/apis/certificates/v1beta1:go_default_library"], | ||
) |
90 changes: 90 additions & 0 deletions
90
cmd/gke-certificates-controller/app/gke_certificates_controller.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,90 @@ | ||
/* | ||
Copyright 2017 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 app implements a server that runs a stand-alone version of the | ||
// certificates controller for GKE clusters. | ||
package app | ||
|
||
import ( | ||
"time" | ||
|
||
v1core "k8s.io/client-go/kubernetes/typed/core/v1" | ||
restclient "k8s.io/client-go/rest" | ||
"k8s.io/client-go/tools/clientcmd" | ||
"k8s.io/client-go/tools/record" | ||
"k8s.io/kubernetes/pkg/client/clientset_generated/clientset" | ||
informers "k8s.io/kubernetes/pkg/client/informers/informers_generated/externalversions" | ||
"k8s.io/kubernetes/pkg/controller" | ||
"k8s.io/kubernetes/pkg/controller/certificates" | ||
|
||
// Install all auth plugins | ||
_ "k8s.io/client-go/plugin/pkg/client/auth" | ||
|
||
"github.com/golang/glog" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
// NewGKECertificatesControllerCommand creates a new *cobra.Command with default parameters. | ||
func NewGKECertificatesControllerCommand() *cobra.Command { | ||
cmd := &cobra.Command{ | ||
Use: "gke-certificates-controller", | ||
Long: `The Kubernetes GKE certificates controller is a daemon that | ||
handles auto-approving and signing certificates for GKE clusters.`, | ||
} | ||
|
||
return cmd | ||
} | ||
|
||
// Run runs the GKECertificatesController. This should never exit. | ||
func Run(s *GKECertificatesController) error { | ||
kubeconfig, err := clientcmd.BuildConfigFromFlags("", s.Kubeconfig) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
kubeClient, err := clientset.NewForConfig(restclient.AddUserAgent(kubeconfig, "gke-certificates-controller")) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
eventBroadcaster := record.NewBroadcaster() | ||
eventBroadcaster.StartLogging(glog.Infof) | ||
eventBroadcaster.StartRecordingToSink(&v1core.EventSinkImpl{Interface: v1core.New(kubeClient.Core().RESTClient()).Events("")}) | ||
|
||
clientBuilder := controller.SimpleControllerClientBuilder{ClientConfig: kubeconfig} | ||
client := clientBuilder.ClientOrDie("certificate-controller") | ||
|
||
sharedInformers := informers.NewSharedInformerFactory(client, time.Duration(12)*time.Hour) | ||
|
||
signer, err := NewGKESigner(s.ClusterSigningGKEKubeconfig, s.ClusterSigningGKERetryBackoff.Duration) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
controller, err := certificates.NewCertificateController( | ||
client, | ||
sharedInformers.Certificates().V1beta1().CertificateSigningRequests(), | ||
signer, | ||
certificates.NewGroupApprover(s.ApproveAllKubeletCSRsForGroup), | ||
) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
sharedInformers.Start(nil) | ||
controller.Run(1, nil) // runs forever | ||
return 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,90 @@ | ||
/* | ||
Copyright 2017 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 app | ||
|
||
import ( | ||
"fmt" | ||
"time" | ||
|
||
"github.com/golang/glog" | ||
|
||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"k8s.io/apiserver/pkg/util/webhook" | ||
"k8s.io/client-go/rest" | ||
"k8s.io/kubernetes/pkg/api" | ||
_ "k8s.io/kubernetes/pkg/apis/certificates/install" | ||
certificates "k8s.io/kubernetes/pkg/apis/certificates/v1beta1" | ||
) | ||
|
||
var ( | ||
groupVersions = []schema.GroupVersion{certificates.SchemeGroupVersion} | ||
) | ||
|
||
// GKESigner uses external calls to GKE in order to sign certificate signing | ||
// requests. | ||
type GKESigner struct { | ||
webhook *webhook.GenericWebhook | ||
kubeConfigFile string | ||
retryBackoff time.Duration | ||
} | ||
|
||
// NewGKESigner will create a new instance of a GKESigner. | ||
func NewGKESigner(kubeConfigFile string, retryBackoff time.Duration) (*GKESigner, error) { | ||
webhook, err := webhook.NewGenericWebhook(api.Registry, api.Codecs, kubeConfigFile, groupVersions, retryBackoff) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &GKESigner{ | ||
webhook: webhook, | ||
kubeConfigFile: kubeConfigFile, | ||
retryBackoff: retryBackoff, | ||
}, nil | ||
} | ||
|
||
// Sign will make an external call to GKE order to sign the given | ||
// *certificates.CertificateSigningRequest, using the GKESigner's | ||
// kubeConfigFile. | ||
func (s *GKESigner) Sign(csr *certificates.CertificateSigningRequest) (*certificates.CertificateSigningRequest, error) { | ||
result := s.webhook.WithExponentialBackoff(func() rest.Result { | ||
return s.webhook.RestClient.Post().Body(csr).Do() | ||
}) | ||
|
||
if err := result.Error(); err != nil { | ||
return nil, s.webhookError(csr, err) | ||
} | ||
|
||
var statusCode int | ||
if result.StatusCode(&statusCode); statusCode < 200 || statusCode >= 300 { | ||
return nil, s.webhookError(csr, fmt.Errorf("received unsuccessful response code from webhook: %d", statusCode)) | ||
} | ||
|
||
result_csr := &certificates.CertificateSigningRequest{} | ||
|
||
if err := result.Into(result_csr); err != nil { | ||
return nil, s.webhookError(result_csr, err) | ||
} | ||
|
||
// Keep the original CSR intact, and only update fields we expect to change. | ||
csr.Status.Certificate = result_csr.Status.Certificate | ||
return csr, nil | ||
} | ||
|
||
func (s *GKESigner) webhookError(csr *certificates.CertificateSigningRequest, err error) error { | ||
glog.V(2).Infof("error contacting webhook backend: %s", err) | ||
return err | ||
} |
Oops, something went wrong.