(c *Controller, object client.Object, ctx *common.RequestContext)
| 348 | } |
| 349 | |
| 350 | func StatefulSetCreateObject(c *Controller, object client.Object, ctx *common.RequestContext) error { |
| 351 | statefulSet := object.(*appv1.StatefulSet) |
| 352 | if err := c.CreateRuntime(statefulSet, ctx); err != nil { |
| 353 | return err |
| 354 | } |
| 355 | return nil |
| 356 | } |
| 357 | |
| 358 | // ListOptions func(c *Controller) []client.ListOption |
| 359 |
nothing calls this directly
no test coverage detected