Documentation ¶
Index ¶
- Variables
- func GetPortName(instanceName string, opts *infrav1.PortOpts, netIndex int) string
- func GetSGControlPlaneAdditionalPorts(ports []int) []infrav1.SecurityGroupRule
- func GetSGControlPlaneAllowAll(remoteGroupIDSelf, secWorkerGroupID string) []infrav1.SecurityGroupRule
- func GetSGControlPlaneGeneral(remoteGroupIDSelf, secWorkerGroupID string) []infrav1.SecurityGroupRule
- func GetSGControlPlaneHTTPS() []infrav1.SecurityGroupRule
- func GetSGControlPlaneSSH(secBastionGroupID string) []infrav1.SecurityGroupRule
- func GetSGWorkerAllowAll(remoteGroupIDSelf, secControlPlaneGroupID string) []infrav1.SecurityGroupRule
- func GetSGWorkerGeneral(remoteGroupIDSelf, secControlPlaneGroupID string) []infrav1.SecurityGroupRule
- func GetSGWorkerNodePort() []infrav1.SecurityGroupRule
- func GetSGWorkerSSH(secBastionGroupID string) []infrav1.SecurityGroupRule
- type Service
- func (s *Service) AssociateFloatingIP(eventObject runtime.Object, fp *floatingips.FloatingIP, portID string) error
- func (s *Service) DeleteBastionSecurityGroup(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
- func (s *Service) DeleteFloatingIP(eventObject runtime.Object, ip string) error
- func (s *Service) DeleteNetwork(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
- func (s *Service) DeletePort(eventObject runtime.Object, portID string) error
- func (s *Service) DeletePorts(openStackCluster *infrav1.OpenStackCluster) error
- func (s *Service) DeleteRouter(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
- func (s *Service) DeleteSecurityGroups(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
- func (s *Service) DeleteTrunk(eventObject runtime.Object, portID string) error
- func (s *Service) DisassociateFloatingIP(eventObject runtime.Object, ip string) error
- func (s *Service) GarbageCollectErrorInstancesPort(eventObject runtime.Object, instanceName string, portOpts []infrav1.PortOpts) error
- func (s *Service) GetFloatingIP(ip string) (*floatingips.FloatingIP, error)
- func (s *Service) GetFloatingIPByPortID(portID string) (*floatingips.FloatingIP, error)
- func (s *Service) GetNetworkIDsByFilter(opts networks.ListOptsBuilder) ([]string, error)
- func (s *Service) GetNetworkSubnetByFilter(networkID string, filter *infrav1.SubnetFilter) (*subnets.Subnet, error)
- func (s *Service) GetNetworksByFilter(opts networks.ListOptsBuilder) ([]networks.Network, error)
- func (s *Service) GetOrCreateFloatingIP(eventObject runtime.Object, openStackCluster *infrav1.OpenStackCluster, ...) (*floatingips.FloatingIP, error)
- func (s *Service) GetOrCreatePort(eventObject runtime.Object, clusterName string, portName string, ...) (*ports.Port, error)
- func (s *Service) GetPortFromInstanceIP(instanceID string, ip string) ([]ports.Port, error)
- func (s *Service) GetSecurityGroups(securityGroupParams []infrav1.SecurityGroupFilter) ([]string, error)
- func (s *Service) GetSubnetByFilter(filter *infrav1.SubnetFilter) (*subnets.Subnet, error)
- func (s *Service) GetSubnetsByFilter(opts subnets.ListOptsBuilder) ([]subnets.Subnet, error)
- func (s *Service) GetTrunkSupport() (bool, error)
- func (s *Service) ReconcileExternalNetwork(openStackCluster *infrav1.OpenStackCluster) error
- func (s *Service) ReconcileNetwork(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
- func (s *Service) ReconcileRouter(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
- func (s *Service) ReconcileSecurityGroups(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
- func (s *Service) ReconcileSubnet(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
Constants ¶
This section is empty.
Variables ¶
var ( ErrFilterMatch = fmt.Errorf("filter match error") ErrMultipleMatches = multipleMatchesError{} ErrNoMatches = noMatchesError{} )
Functions ¶
func GetPortName ¶
GetPortName appends a suffix to an instance name in order to try and get a unique name per port.
func GetSGControlPlaneAdditionalPorts ¶
func GetSGControlPlaneAdditionalPorts(ports []int) []infrav1.SecurityGroupRule
Permit ports that defined in openStackCluster.Spec.APIServerLoadBalancer.AdditionalPorts.
func GetSGControlPlaneAllowAll ¶
func GetSGControlPlaneAllowAll(remoteGroupIDSelf, secWorkerGroupID string) []infrav1.SecurityGroupRule
Permit all ingress from the cluster security groups.
func GetSGControlPlaneGeneral ¶
func GetSGControlPlaneGeneral(remoteGroupIDSelf, secWorkerGroupID string) []infrav1.SecurityGroupRule
func GetSGControlPlaneHTTPS ¶
func GetSGControlPlaneHTTPS() []infrav1.SecurityGroupRule
Allow all traffic, including from outside the cluster, to access the API.
func GetSGControlPlaneSSH ¶
func GetSGControlPlaneSSH(secBastionGroupID string) []infrav1.SecurityGroupRule
Permit traffic for ssh control plane.
func GetSGWorkerAllowAll ¶
func GetSGWorkerAllowAll(remoteGroupIDSelf, secControlPlaneGroupID string) []infrav1.SecurityGroupRule
Permit all ingress from the cluster security groups.
func GetSGWorkerGeneral ¶
func GetSGWorkerGeneral(remoteGroupIDSelf, secControlPlaneGroupID string) []infrav1.SecurityGroupRule
func GetSGWorkerNodePort ¶
func GetSGWorkerNodePort() []infrav1.SecurityGroupRule
Allow all traffic, including from outside the cluster, to access node port services.
func GetSGWorkerSSH ¶
func GetSGWorkerSSH(secBastionGroupID string) []infrav1.SecurityGroupRule
Permit traffic for ssh worker.
Types ¶
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service interfaces with the OpenStack Networking API. It will create a network related infrastructure for the cluster, like network, subnet, router, security groups.
func NewService ¶
NewService returns an instance of the networking service.
func (*Service) AssociateFloatingIP ¶
func (s *Service) AssociateFloatingIP(eventObject runtime.Object, fp *floatingips.FloatingIP, portID string) error
func (*Service) DeleteBastionSecurityGroup ¶
func (s *Service) DeleteBastionSecurityGroup(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
func (*Service) DeleteFloatingIP ¶
func (*Service) DeleteNetwork ¶
func (s *Service) DeleteNetwork(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
func (*Service) DeletePort ¶
func (*Service) DeletePorts ¶
func (s *Service) DeletePorts(openStackCluster *infrav1.OpenStackCluster) error
func (*Service) DeleteRouter ¶
func (s *Service) DeleteRouter(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
func (*Service) DeleteSecurityGroups ¶
func (s *Service) DeleteSecurityGroups(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
func (*Service) DeleteTrunk ¶
func (*Service) DisassociateFloatingIP ¶
func (*Service) GarbageCollectErrorInstancesPort ¶
func (*Service) GetFloatingIP ¶
func (s *Service) GetFloatingIP(ip string) (*floatingips.FloatingIP, error)
func (*Service) GetFloatingIPByPortID ¶
func (s *Service) GetFloatingIPByPortID(portID string) (*floatingips.FloatingIP, error)
func (*Service) GetNetworkIDsByFilter ¶
func (s *Service) GetNetworkIDsByFilter(opts networks.ListOptsBuilder) ([]string, error)
GetNetworkIDsByFilter retrieves network ids by querying openstack with filters.
func (*Service) GetNetworkSubnetByFilter ¶
func (s *Service) GetNetworkSubnetByFilter(networkID string, filter *infrav1.SubnetFilter) (*subnets.Subnet, error)
GetNetworkSubnetByFilter gets a single subnet of the given network, specified by the given SubnetFilter. It returns an ErrFilterMatch if no or multiple subnets are found.
func (*Service) GetNetworksByFilter ¶
GetNetworksByFilter retrieves networks by querying openstack with filters.
func (*Service) GetOrCreateFloatingIP ¶
func (s *Service) GetOrCreateFloatingIP(eventObject runtime.Object, openStackCluster *infrav1.OpenStackCluster, clusterName, ip string) (*floatingips.FloatingIP, error)
func (*Service) GetOrCreatePort ¶
func (*Service) GetPortFromInstanceIP ¶
GetPortFromInstanceIP returns at most one port attached to the instance with given ID and with the IP address provided.
func (*Service) GetSecurityGroups ¶
func (s *Service) GetSecurityGroups(securityGroupParams []infrav1.SecurityGroupFilter) ([]string, error)
func (*Service) GetSubnetByFilter ¶
GetSubnetByFilter gets a single subnet specified by the given SubnetFilter. It returns an ErrFilterMatch if no or multiple subnets are found.
func (*Service) GetSubnetsByFilter ¶
GetSubnetsByFilter gets the id of a subnet by querying openstack with filters.
func (*Service) GetTrunkSupport ¶
func (*Service) ReconcileExternalNetwork ¶
func (s *Service) ReconcileExternalNetwork(openStackCluster *infrav1.OpenStackCluster) error
func (*Service) ReconcileNetwork ¶
func (s *Service) ReconcileNetwork(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
func (*Service) ReconcileRouter ¶
func (s *Service) ReconcileRouter(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
func (*Service) ReconcileSecurityGroups ¶
func (s *Service) ReconcileSecurityGroups(openStackCluster *infrav1.OpenStackCluster, clusterName string) error
ReconcileSecurityGroups reconcile the security groups.
func (*Service) ReconcileSubnet ¶
func (s *Service) ReconcileSubnet(openStackCluster *infrav1.OpenStackCluster, clusterName string) error