# Functions

New returns a new kubernetes container.
NewBuilder returns a new instance of builder.
WithImage sets the image of the container.
WithName sets the name of the container.

# Structs

Builder provides utilities required to build a kubernetes container type.

# Type aliases

OptionFunc is a typed function that abstracts anykind of operation against the provided container instance This is the basic building block to create functional operations against the container instance.
Predicate abstracts conditional logic w.r.t the container instance NOTE: Predicate is a functional approach versus traditional approach to mix conditions such as *if-else* within blocks of business logic NOTE: Predicate approach enables clear separation of conditionals from imperatives i.e.