
In case some ingress have a syntax error in the snippet configuration, the freshly generated configuration will not be reloaded to prevent tearing down existing rules. Although, once inserted, this configuration is preventing from any other valid configuration to be inserted as it remains in the ingresses of the cluster. To solve this problem, implement an optional validation webhook that simulates the addition of the ingress to be added together with the rest of ingresses. In case the generated configuration is not validated by nginx, deny the insertion of the ingress. In case certificates are mounted using kubernetes secrets, when those changes, keys are automatically updated in the container volume, and the controller reloads it using the filewatcher. Related changes: - Update vendors - Extract useful functions to check configuration with an additional ingress - Update documentation for validating webhook - Add validating webhook examples - Add a metric for each syntax check success and errors - Add more certificate generation examples
89 lines
2.5 KiB
Go
89 lines
2.5 KiB
Go
/*
|
|
Copyright 2019 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 controller
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
"net/http"
|
|
|
|
"k8s.io/api/admission/v1beta1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"k8s.io/apimachinery/pkg/runtime/serializer"
|
|
"k8s.io/apimachinery/pkg/util/json"
|
|
"k8s.io/klog"
|
|
)
|
|
|
|
var (
|
|
scheme = runtime.NewScheme()
|
|
codecs = serializer.NewCodecFactory(scheme)
|
|
)
|
|
|
|
// AdmissionController checks if an object
|
|
// is allowed in the cluster
|
|
type AdmissionController interface {
|
|
HandleAdmission(*v1beta1.AdmissionReview) error
|
|
}
|
|
|
|
// AdmissionControllerServer implements an HTTP server
|
|
// for kubernetes validating webhook
|
|
// https://kubernetes.io/docs/reference/access-authn-authz/admission-controllers/#validatingadmissionwebhook
|
|
type AdmissionControllerServer struct {
|
|
AdmissionController AdmissionController
|
|
Decoder runtime.Decoder
|
|
}
|
|
|
|
// NewAdmissionControllerServer instanciates an admission controller server with
|
|
// a default codec
|
|
func NewAdmissionControllerServer(ac AdmissionController) *AdmissionControllerServer {
|
|
return &AdmissionControllerServer{
|
|
AdmissionController: ac,
|
|
Decoder: codecs.UniversalDeserializer(),
|
|
}
|
|
}
|
|
|
|
// ServeHTTP implements http.Server method
|
|
func (acs *AdmissionControllerServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
klog.Infof("handling admission controller request %s", r.URL.String())
|
|
|
|
review, err := parseAdmissionReview(acs.Decoder, r.Body)
|
|
if err != nil {
|
|
klog.Error("Can't decode request", err)
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
acs.AdmissionController.HandleAdmission(review)
|
|
if err := writeAdmissionReview(w, review); err != nil {
|
|
klog.Error(err)
|
|
}
|
|
}
|
|
|
|
func parseAdmissionReview(decoder runtime.Decoder, r io.Reader) (*v1beta1.AdmissionReview, error) {
|
|
review := &v1beta1.AdmissionReview{}
|
|
data, err := ioutil.ReadAll(r)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
_, _, err = decoder.Decode(data, nil, review)
|
|
return review, err
|
|
}
|
|
|
|
func writeAdmissionReview(w io.Writer, ar *v1beta1.AdmissionReview) error {
|
|
e := json.NewEncoder(w)
|
|
return e.Encode(ar)
|
|
}
|