Cleanup unused parameters from nova templates

This patch removes the parameters in nova templates, which has had
no effect recently. This also removes the unused ContainerCli in
parameter definitions.

Change-Id: I173e5ae5a377d633dddce185dff11ea7e2f3bada
This commit is contained in:
Takashi Kajinami 2020-10-27 13:47:44 +09:00
parent 55c16307ca
commit a2324ccac8
4 changed files with 7 additions and 14 deletions

View File

@ -50,10 +50,6 @@ parameters:
EnableInternalTLS:
type: boolean
default: false
NovaDbSyncTimeout:
default: 300
description: Timeout for Nova db sync
type: number
NovaPassword:
description: The password for the nova service and db account
type: string

View File

@ -55,10 +55,6 @@ parameters:
description: >
Endpoint interface to be used for the placement API.
default: 'internal'
ExtractedPlacementEnabled:
type: boolean
description: Set to True when deploying the extracted Placement service.
default: False
NovaOVSBridge:
default: 'br-int'
description: Name of integration bridge used by Open vSwitch

View File

@ -176,12 +176,6 @@ parameters:
tags:
- role_specific
ContainerCli:
type: string
default: 'podman'
description: CLI tool used to manage containers.
constraints:
- allowed_values: ['docker', 'podman']
NovaComputeLibvirtType:
type: string
default: kvm

View File

@ -0,0 +1,7 @@
---
upgrade:
- |
The following parameters have been removed since they have had no effect.
- ``NovaDbSyncTimeout``
- ``ExtractedPlacementEnabled``