Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Validating webhook #2

Merged
merged 2 commits into from
Jan 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 20 additions & 54 deletions cmd/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@ package cmd

import (
"fmt"
"os"

log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"gitlab.com/hooksie1/cmsnr/pkg/deployment"
"os"
"sigs.k8s.io/yaml"
)

Expand All @@ -34,7 +33,9 @@ func printKind(i interface{}) {

func generate(cmd *cobra.Command, args []string) {
mService := "cmsnr-mutating-webhook"
name := viper.GetString("secret")
vService := "cmsnr-validating-webhook"
mSecret := fmt.Sprintf("mutating-%s", viper.GetString("secret"))
vSecret := fmt.Sprintf("validating-%s", viper.GetString("secret"))
port := viper.GetInt("port")
namespace := viper.GetString("namespace")

Expand All @@ -44,61 +45,26 @@ func generate(cmd *cobra.Command, args []string) {
os.Exit(2)
}

mw := webhookServer{
service: mService,
namespace: namespace,
name: name,
port: port,
cert: mCert,
key: mKey,
vCert, vKey, err := deployment.GenerateCertificate(vService, namespace)
if err != nil {
log.Error(err)
os.Exit(2)
}

mw.printServiceAccount()

mw.printClusterRole()

mw.printClusterRoleBinding()

mw.printCRD()

mw.printMutatingDeployment()

mw.printMutatingService()

mw.printMutatingSecret()

mw.printMutatingWebhook()

}

func (w *webhookServer) printServiceAccount() {
printKind(deployment.NewSA(w.namespace))
}
mw := deployment.NewMutatingWebhookServer().NamespacedName(mService, namespace).MutatingWebhook(port, mCert).Rules()
vw := deployment.NewValidatingWebhookServer().NamespacedName(vService, namespace).ValidatingWebhook(port, vCert).Rules()

func (w *webhookServer) printClusterRole() {
printKind(deployment.NewSA(namespace))
printKind(deployment.NewClusterRole())
}

func (w *webhookServer) printClusterRoleBinding() {
printKind(deployment.NewClusterRolebinding(w.namespace))
}

func (w *webhookServer) printCRD() {
printKind(deployment.NewClusterRolebinding(namespace))
fmt.Println(deployment.NewCRD())
}

func (w *webhookServer) printMutatingDeployment() {
printKind(deployment.NewDeployment(w.service, w.namespace, w.port))
}

func (w *webhookServer) printMutatingService() {
printKind(deployment.NewService(w.service, w.namespace, w.port))
}

func (w *webhookServer) printMutatingSecret() {
printKind(deployment.CertAsSecret(w.cert, w.key, w.name, w.namespace))
}
printKind(deployment.NewDeployment(mService, namespace, "mutating", mSecret, port))
printKind(deployment.NewDeployment(vService, namespace, "validating", vSecret, port))
printKind(deployment.NewService(mService, namespace, port))
printKind(deployment.NewService(vService, namespace, port))
printKind(deployment.CertAsSecret(mCert, mKey, mSecret, namespace))
printKind(deployment.CertAsSecret(vCert, vKey, vSecret, namespace))
printKind(mw.Config)
printKind(vw.Config)

func (w *webhookServer) printMutatingWebhook() {
printKind(deployment.NewMutatingWebhookConfig(w.service, w.namespace, w.port, w.cert))
}
16 changes: 9 additions & 7 deletions cmd/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ func init() {
}

type webhookServer struct {
service string
namespace string
name string
port int
cert []byte
key []byte
certPath string
serverType string
service string
namespace string
name string
port int
cert []byte
key []byte
certPath string
print func(interface{}, func(i interface{}))
}
53 changes: 53 additions & 0 deletions cmd/validating.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
package cmd

import (
log "github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"gitlab.com/hooksie1/cmsnr/pkg/server"
"os"
"sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/manager"
"sigs.k8s.io/controller-runtime/pkg/manager/signals"
"sigs.k8s.io/controller-runtime/pkg/webhook"
)

// validatingCmd represents the validating command
var validatingCmd = &cobra.Command{
Use: "validating",
Short: "Starts the cmsnr validating webhook",
Run: validateServer,
}

func init() {
startCmd.AddCommand(validatingCmd)
}

func validateServer(cmd *cobra.Command, args []string) {
port := viper.GetInt("port")
log.Debugf("validating webhook port: %d", port)
log.Info("setting up webhook server")
mgr, err := manager.New(config.GetConfigOrDie(), manager.Options{})
if err != nil {
log.Error(err)
os.Exit(1)
}

validator := server.Validator{
Client: mgr.GetClient(),
}

mgrServer := mgr.GetWebhookServer()
mgrServer.Port = port
mgrServer.CertDir = "/var/lib/cmsnr"
mgrServer.Register("/validate", &webhook.Admission{
Handler: &validator,
})

log.Info("starting webhook server")
if err := mgrServer.Start(signals.SetupSignalHandler()); err != nil {
log.Errorf("unable to start webhook server: %s", err)
os.Exit(1)
}

}
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ module gitlab.com/hooksie1/cmsnr
go 1.16

require (
github.com/open-policy-agent/opa v0.35.0
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.9.0
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/tools v0.1.8 // indirect
k8s.io/api v0.22.3
k8s.io/apiextensions-apiserver v0.22.2 // indirect
k8s.io/apimachinery v0.22.3
k8s.io/client-go v0.22.3
k8s.io/klog/v2 v2.9.0
Expand Down
Loading