Disable auto endpoint creation
Change-Id: Idde1d48af7fd9bfba78d07137d9c1f147f8b890d
This commit is contained in:
parent
b95acd6a55
commit
4e3df13c29
@ -50,8 +50,11 @@ def create_or_resume(name, spec, **_):
|
||||
name=name, spec=spec)
|
||||
url = spec["ingress"]["host"]
|
||||
|
||||
identity.ensure_service(name="glance", service_type="image",
|
||||
url=url, desc="Glance Image Service")
|
||||
if "endpoint" not in spec:
|
||||
spec["endpoint"] = True
|
||||
if spec["endpoint"]:
|
||||
identity.ensure_service(name="glance", service_type="image",
|
||||
url=url, desc="Glance Image Service")
|
||||
|
||||
|
||||
def update(name, spec, **_):
|
||||
|
@ -74,12 +74,17 @@ def create_or_resume(name, spec, **_):
|
||||
identity.ensure_application_credential(name="heat")
|
||||
|
||||
# Create service and endpoints
|
||||
identity.ensure_service(name="heat-api", service_type="orchestration",
|
||||
url=api_url, path="/v1/$(project_id)s",
|
||||
desc="Heat Orchestration Service")
|
||||
identity.ensure_service(name="heat-api-cfn", service_type="cloudformation",
|
||||
url=cfn_url, path="/v1",
|
||||
desc="Heat CloudFormation Service")
|
||||
if "endpoint" not in spec:
|
||||
spec["endpoint"] = True
|
||||
if spec["endpoint"]:
|
||||
identity.ensure_service(name="heat-api",
|
||||
service_type="orchestration",
|
||||
url=api_url, path="/v1/$(project_id)s",
|
||||
desc="Heat Orchestration Service")
|
||||
identity.ensure_service(name="heat-api-cfn",
|
||||
service_type="cloudformation",
|
||||
url=cfn_url, path="/v1",
|
||||
desc="Heat CloudFormation Service")
|
||||
|
||||
|
||||
def update(name, spec, **_):
|
||||
|
@ -61,9 +61,13 @@ def create_or_resume(name, spec, **_):
|
||||
url = spec["ingress"]["host"]
|
||||
|
||||
# Create service and endpoints
|
||||
identity.ensure_service(name="magnum-api", path="/v1",
|
||||
service_type="container-infra", url=url,
|
||||
desc="Container Infrastructure Management Service")
|
||||
if "endpoint" not in spec:
|
||||
spec["endpoint"] = True
|
||||
if spec["endpoint"]:
|
||||
identity.ensure_service(name="magnum-api", path="/v1",
|
||||
service_type="container-infra", url=url,
|
||||
desc="Container Infrastructure \
|
||||
Management Service")
|
||||
|
||||
|
||||
def update(name, spec, **_):
|
||||
|
Loading…
x
Reference in New Issue
Block a user