Skip to content

Commit 34a2289

Browse files
committed
feat(contrib/azure/azure-coreos-cluster): add an https enddpoint on creation
Adds a load balanced https endpoint on creation
1 parent e153834 commit 34a2289

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

contrib/azure/azure-coreos-cluster

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,7 @@ def network_config(subnet_name=None, port='59913', public_ip_name=None):
159159
if args.deis:
160160
# create web endpoint with probe checking /health-check
161161
network.input_endpoints.input_endpoints.append(endpoint_config('web', '80', load_balancer_probe('/health-check', '80', 'http')))
162+
network.input_endpoints.input_endpoints.append(endpoint_config('https', '443', load_balancer_probe(None, '443', 'tcp')))
162163
# create builder endpoint TCP probe check
163164
network.input_endpoints.input_endpoints.append(endpoint_config('builder', '2222', load_balancer_probe(None, '2222', 'tcp')))
164165
return network

0 commit comments

Comments
 (0)