Documentation ¶
Index ¶
- Constants
- func GenericAPIServer(port int, cfg *config.Config) manager.Runnable
- func MockAPIServer(port int) manager.Runnable
- func SetupProfiling(r *gin.Engine)
- func StaticFileServer(port int, cfg *config.Config) manager.Runnable
- type Event
- type PostServer
- func (s *PostServer) HealthzCheck() healthz.Checker
- func (s *PostServer) InjectConfig(cfg *config.Config)
- func (s *PostServer) InjectController(c lifecycle.Controller)
- func (s *PostServer) InjectEventRecorder(er record.EventRecorder)
- func (s *PostServer) InjectReader(reader client.Reader)
- func (s *PostServer) Name() string
- func (s *PostServer) ReadyzCheck() healthz.Checker
- func (s *PostServer) SaveFile(executionID, name string, data []byte) (string, error)
- type Server
Constants ¶
View Source
const ( // CallbackBasePath callback path CallbackBasePath = "/report/:node/:executionID" // CallbackBaseResultSubPath result sub path CallbackBaseResultSubPath = "/result" // CallbackBaseFileSubPath file sub path CallbackBaseFileSubPath = "/file" // CallbackBaseEventSubPath event sub path CallbackBaseEventSubPath = "/event" // FileName query parameter name FileName = "name" )
Variables ¶
This section is empty.
Functions ¶
func GenericAPIServer ¶
GenericAPIServer prepare the generic api server
func MockAPIServer ¶ added in v1.2.2
MockAPIServer prepare the mock api server
Types ¶
type Event ¶ added in v1.0.0
type Event struct { Waring bool `json:"warning"` Reason string `json:"reason" validate:"required,first_char_must_be_uppercase"` Message string `json:"message,omitempty" validate:"required"` Args []string `json:"args,omitempty"` }
Event to be sent as k8s event
type PostServer ¶
type PostServer struct { *Server Controller lifecycle.Controller Config *config.Config EventRecorder record.EventRecorder Client client.Reader }
PostServer post server
func (*PostServer) HealthzCheck ¶ added in v1.4.0
func (s *PostServer) HealthzCheck() healthz.Checker
HealthzCheck check if server is running
func (*PostServer) InjectConfig ¶ added in v1.0.0
func (s *PostServer) InjectConfig(cfg *config.Config)
InjectConfig inject the config
func (*PostServer) InjectController ¶ added in v1.0.6
func (s *PostServer) InjectController(c lifecycle.Controller)
InjectController inject the controller
func (*PostServer) InjectEventRecorder ¶ added in v1.0.0
func (s *PostServer) InjectEventRecorder(er record.EventRecorder)
InjectEventRecorder inject the event recorder
func (*PostServer) InjectReader ¶ added in v1.0.0
func (s *PostServer) InjectReader(reader client.Reader)
InjectReader inject the client reader
func (*PostServer) Name ¶ added in v1.4.0
func (s *PostServer) Name() string
Name the name of the server
func (*PostServer) ReadyzCheck ¶ added in v1.4.0
func (s *PostServer) ReadyzCheck() healthz.Checker
ReadyzCheck check if server is running
type Server ¶
type Server struct { Port int Kind string Handler http.Handler Log logr.Logger Config *config.Config }
Server default server
func (*Server) HealthzCheck ¶ added in v1.4.0
HealthzCheck check if server is running
func (*Server) ReadyzCheck ¶ added in v1.4.0
ReadyzCheck check if server is running
Click to show internal directories.
Click to hide internal directories.