* * image build in cluster now use InitContainer to do the image building inside pods, which invoke docker again node's docker daemon * create a docker build image tool fx/contrib/docker_packer * clean up no need env in GitHub action workflow * bump version
10 lines
259 B
Go
10 lines
259 B
Go
package types
|
|
|
|
// PortBinding defines port binding
|
|
// ContainerExposePort the port target container exposes
|
|
// @ServiceBindingPort the port binding to the port container expose
|
|
type PortBinding struct {
|
|
ServiceBindingPort int32
|
|
ContainerExposePort int32
|
|
}
|