-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from kubernetes-sigs/revert-88-revert-84-webhook
Revert "Revert "Webhook scaffolding""
- Loading branch information
Showing
143 changed files
with
8,468 additions
and
1,208 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,103 @@ | ||
/* | ||
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 cmd | ||
|
||
import ( | ||
"fmt" | ||
"log" | ||
"os" | ||
"os/exec" | ||
|
||
"github.com/spf13/cobra" | ||
flag "github.com/spf13/pflag" | ||
|
||
"k8s.io/apimachinery/pkg/api/meta" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
"sigs.k8s.io/controller-tools/pkg/scaffold" | ||
"sigs.k8s.io/controller-tools/pkg/scaffold/input" | ||
"sigs.k8s.io/controller-tools/pkg/scaffold/resource" | ||
"sigs.k8s.io/controller-tools/pkg/scaffold/webhook" | ||
) | ||
|
||
var res *resource.Resource | ||
var operations []string | ||
var server string | ||
var webhookType string | ||
|
||
// WebhookCmd represents the webhook command | ||
var WebhookCmd = &cobra.Command{ | ||
Use: "webhook", | ||
Short: "Scaffold a webhook server", | ||
Long: `Scaffold a webhook server`, | ||
Example: `webhook example: TBD`, | ||
Run: func(cmd *cobra.Command, args []string) { | ||
DieIfNoProject() | ||
|
||
fmt.Println("Writing scaffold for you to edit...") | ||
|
||
if len(res.Resource) == 0 { | ||
gvr, _ := meta.UnsafeGuessKindToResource(schema.GroupVersionKind{ | ||
Group: res.Group, Version: res.Version, Kind: res.Kind}) | ||
res.Resource = gvr.Resource | ||
} | ||
|
||
err := (&scaffold.Scaffold{}).Execute(input.Options{}, | ||
&webhook.AdmissionHandler{Resource: res, Config: webhook.Config{Server: server, Type: webhookType, Operations: operations}}, | ||
&webhook.AdmissionWebhookBuilder{Resource: res, Config: webhook.Config{Server: server, Type: webhookType, Operations: operations}}, | ||
&webhook.AdmissionWebhooks{Resource: res, Config: webhook.Config{Server: server, Type: webhookType, Operations: operations}}, | ||
&webhook.AddAdmissionWebhookBuilderHandler{Resource: res, Config: webhook.Config{Server: server, Type: webhookType, Operations: operations}}, | ||
&webhook.Server{Resource: res, Config: webhook.Config{Server: server, Type: webhookType, Operations: operations}}, | ||
&webhook.AddServer{Resource: res, Config: webhook.Config{Server: server, Type: webhookType, Operations: operations}}, | ||
) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
if doMake { | ||
fmt.Println("Running make...") | ||
cm := exec.Command("make") // #nosec | ||
cm.Stderr = os.Stderr | ||
cm.Stdout = os.Stdout | ||
if err := cm.Run(); err != nil { | ||
log.Fatal(err) | ||
} | ||
} | ||
}, | ||
} | ||
|
||
func init() { | ||
rootCmd.AddCommand(WebhookCmd) | ||
WebhookCmd.Flags().StringVar(&server, "server", "default", | ||
"name of the server") | ||
WebhookCmd.Flags().StringVar(&webhookType, "type", "", | ||
"webhook type, e.g. mutating or validating") | ||
WebhookCmd.Flags().StringSliceVar(&operations, "operations", []string{"create"}, | ||
"the operations that the webhook will intercept, e.g. create, update, delete and connect") | ||
WebhookCmd.Flags().BoolVar(&doMake, "make", true, | ||
"if true, run make after generating files") | ||
res = gvkForFlags(WebhookCmd.Flags()) | ||
} | ||
|
||
// gvkForFlags registers flags for Resource fields and returns the Resource | ||
func gvkForFlags(f *flag.FlagSet) *resource.Resource { | ||
r := &resource.Resource{} | ||
f.StringVar(&r.Group, "group", "", "resource Group") | ||
f.StringVar(&r.Version, "version", "", "resource Version") | ||
f.StringVar(&r.Kind, "kind", "", "resource Kind") | ||
f.StringVar(&r.Resource, "resource", "", "resource Resource") | ||
return r | ||
} |
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
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
Oops, something went wrong.