mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	Change LoadBalancer methods to take api.Service
This is a better abstraction than passing in specific pieces of the Service that each of the cloudproviders may or may not need. For instance, many of the providers don't need a region, yet this is passed in. Similarly many of the providers want a string IP for the load balancer, but it passes in a converted net ip. Affinity is unused by AWS. A provider change may also require adding a new parameter which has an effect on all other cloud provider implementations. Further, this will simplify adding provider specific load balancer options, such as with labels or some other metadata. For example, we could add labels for configuring the details of an AWS elastic load balancer, such as idle timeout on connections, whether it is internal or external, cross-zone load balancing, and so on. Authors: @chbatey, @jsravn
This commit is contained in:
		
				
					committed by
					
						
						Chris Batey
					
				
			
			
				
	
			
			
			
						parent
						
							76369c42be
						
					
				
				
					commit
					be9ce30897
				
			@@ -166,7 +166,7 @@ func TestUpdateNodesInExternalLoadBalancer(t *testing.T) {
 | 
			
		||||
				newService("s0", "333", api.ServiceTypeLoadBalancer),
 | 
			
		||||
			},
 | 
			
		||||
			expectedUpdateCalls: []fakecloud.FakeUpdateBalancerCall{
 | 
			
		||||
				{Name: "a333", Region: region, Hosts: []string{"node0", "node1", "node73"}},
 | 
			
		||||
				{newService("s0", "333", api.ServiceTypeLoadBalancer), hosts},
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
@@ -177,9 +177,9 @@ func TestUpdateNodesInExternalLoadBalancer(t *testing.T) {
 | 
			
		||||
				newService("s2", "666", api.ServiceTypeLoadBalancer),
 | 
			
		||||
			},
 | 
			
		||||
			expectedUpdateCalls: []fakecloud.FakeUpdateBalancerCall{
 | 
			
		||||
				{Name: "a444", Region: region, Hosts: []string{"node0", "node1", "node73"}},
 | 
			
		||||
				{Name: "a555", Region: region, Hosts: []string{"node0", "node1", "node73"}},
 | 
			
		||||
				{Name: "a666", Region: region, Hosts: []string{"node0", "node1", "node73"}},
 | 
			
		||||
				{newService("s0", "444", api.ServiceTypeLoadBalancer), hosts},
 | 
			
		||||
				{newService("s1", "555", api.ServiceTypeLoadBalancer), hosts},
 | 
			
		||||
				{newService("s2", "666", api.ServiceTypeLoadBalancer), hosts},
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
@@ -191,8 +191,8 @@ func TestUpdateNodesInExternalLoadBalancer(t *testing.T) {
 | 
			
		||||
				newService("s4", "123", api.ServiceTypeClusterIP),
 | 
			
		||||
			},
 | 
			
		||||
			expectedUpdateCalls: []fakecloud.FakeUpdateBalancerCall{
 | 
			
		||||
				{Name: "a888", Region: region, Hosts: []string{"node0", "node1", "node73"}},
 | 
			
		||||
				{Name: "a999", Region: region, Hosts: []string{"node0", "node1", "node73"}},
 | 
			
		||||
				{newService("s1", "888", api.ServiceTypeLoadBalancer), hosts},
 | 
			
		||||
				{newService("s3", "999", api.ServiceTypeLoadBalancer), hosts},
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
		{
 | 
			
		||||
@@ -202,7 +202,7 @@ func TestUpdateNodesInExternalLoadBalancer(t *testing.T) {
 | 
			
		||||
				nil,
 | 
			
		||||
			},
 | 
			
		||||
			expectedUpdateCalls: []fakecloud.FakeUpdateBalancerCall{
 | 
			
		||||
				{Name: "a234", Region: region, Hosts: []string{"node0", "node1", "node73"}},
 | 
			
		||||
				{newService("s0", "234", api.ServiceTypeLoadBalancer), hosts},
 | 
			
		||||
			},
 | 
			
		||||
		},
 | 
			
		||||
	}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user