ipam

package
v0.9.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 29, 2021 License: Apache-2.0 Imports: 40 Imported by: 0

Documentation

Overview

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2021 Red Hat, Inc. and others

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Index

Constants

View Source
const (
	SubmarinerIPAMGlobalIP = "submariner.io/globalIp"

	AddRules    = true
	DeleteRules = false

	Process = "Process"
	Ignore  = "Ignore"
	Requeue = "Requeue"
)

Variables

This section is empty.

Functions

func CreateGlobalNetMarkingChain

func CreateGlobalNetMarkingChain(ipt iptables.Interface) error

func MarkRemoteClusterTraffic

func MarkRemoteClusterTraffic(ipt iptables.Interface, remoteCidr string, addRules bool)

func RecordAllocateGlobalIP added in v0.9.0

func RecordAllocateGlobalIP(cidr string)

func RecordAvailability added in v0.9.0

func RecordAvailability(cidr string, count int)

func RecordDeallocateGlobalIP added in v0.9.0

func RecordDeallocateGlobalIP(cidr string)

Types

type Controller

type Controller struct {
	// contains filtered or unexported fields
}

func NewController

func NewController(spec *SubmarinerIPAMControllerSpecification, config *InformerConfigStruct,
	globalCIDR, gwNodeName string) (*Controller, error)

func (*Controller) Start added in v0.9.0

func (i *Controller) Start(stopCh <-chan struct{}) error

type GatewayMonitor

type GatewayMonitor struct {
	// contains filtered or unexported fields
}

func NewGatewayMonitor

func NewGatewayMonitor(spec *SubmarinerIPAMControllerSpecification,
	submarinerClient submarinerClientset.Interface, clientSet kubernetes.Interface,
	dynamicClient dynamic.Interface) (*GatewayMonitor, error)

func (*GatewayMonitor) Start added in v0.9.0

func (gm *GatewayMonitor) Start(stopCh <-chan struct{}) error

func (*GatewayMonitor) Stop added in v0.9.0

func (gm *GatewayMonitor) Stop()

type IPPool added in v0.9.0

type IPPool struct {
	sync.RWMutex
	// contains filtered or unexported fields
}

func NewIPPool added in v0.9.0

func NewIPPool(cidr string) (*IPPool, error)

func (*IPPool) Allocate added in v0.9.0

func (p *IPPool) Allocate(key string) (string, error)

func (*IPPool) GetAllocatedIP added in v0.9.0

func (p *IPPool) GetAllocatedIP(key string) string

func (*IPPool) IsAvailable added in v0.9.0

func (p *IPPool) IsAvailable(ip string) bool

func (*IPPool) Release added in v0.9.0

func (p *IPPool) Release(key string) string

func (*IPPool) RequestIP added in v0.9.0

func (p *IPPool) RequestIP(key, ip string) (string, error)

type InformerConfigStruct

type InformerConfigStruct struct {
	KubeClientSet    kubernetes.Interface
	ServiceInformer  kubeInformers.ServiceInformer
	PodInformer      kubeInformers.PodInformer
	NodeInformer     kubeInformers.NodeInformer
	SvcExInformer    informers.GenericInformer
	DynamicClientSet dynamic.Interface
	SvcExGvr         schema.GroupVersionResource
}

type Operation

type Operation string

type SubmarinerIPAMControllerSpecification added in v0.9.0

type SubmarinerIPAMControllerSpecification struct {
	ClusterID  string
	ExcludeNS  []string
	Namespace  string
	GlobalCIDR []string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL