/* 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 main import ( "log" "net/http" "os/exec" "strings" "github.com/spf13/pflag" api "k8s.io/api/core/v1" extensions "k8s.io/api/extensions/v1beta1" nginxconfig "k8s.io/ingress/controllers/nginx/pkg/config" "k8s.io/ingress/core/pkg/ingress" "k8s.io/ingress/core/pkg/ingress/controller" "k8s.io/ingress/core/pkg/ingress/defaults" ) func main() { dc := newDummyController() ic := controller.NewIngressController(dc) defer func() { log.Printf("Shutting down ingress controller...") ic.Stop() }() ic.Start() } func newDummyController() ingress.Controller { return &DummyController{} } type DummyController struct{} func (dc DummyController) SetConfig(cfgMap *api.ConfigMap) { log.Printf("Config map %+v", cfgMap) } func (dc DummyController) Test(file string) *exec.Cmd { return exec.Command("echo", file) } func (dc DummyController) OnUpdate(updatePayload ingress.Configuration) error { log.Printf("Received OnUpdate notification") for _, b := range updatePayload.Backends { eps := []string{} for _, e := range b.Endpoints { eps = append(eps, e.Address) } log.Printf("%v: %v", b.Name, strings.Join(eps, ", ")) } log.Printf("Reloaded new config") return nil } func (dc DummyController) BackendDefaults() defaults.Backend { // Just adopt nginx's default backend config return nginxconfig.NewDefault().Backend } func (n DummyController) Name() string { return "dummy Controller" } func (n DummyController) Check(_ *http.Request) error { return nil } func (dc DummyController) Info() *ingress.BackendInfo { return &ingress.BackendInfo{ Name: "dummy", Release: "0.0.0", Build: "git-00000000", Repository: "git://foo.bar.com", } } func (n DummyController) ConfigureFlags(*pflag.FlagSet) { } func (n DummyController) OverrideFlags(*pflag.FlagSet) { } func (n DummyController) SetListers(lister *ingress.StoreLister) { } func (n DummyController) DefaultIngressClass() string { return "dummy" } func (n DummyController) UpdateIngressStatus(*extensions.Ingress) []api.LoadBalancerIngress { return nil } // DefaultEndpoint returns the default endpoint to be use as default server that returns 404. func (n DummyController) DefaultEndpoint() ingress.Endpoint { return ingress.Endpoint{ Address: "127.0.0.1", Port: "8181", Target: &api.ObjectReference{}, } }