Enable package installation by default

Now overcloud is always deployed using pre-provisioned nodes, and all
deployment types(standalone, undercloud and overcloud) enables package
installation.

Thus we can update the default value of EnablePackageInstall instead of
setting the parameter everytime.

Change-Id: I5598f6d8ee82f0df2598dd0e48fbc16cdb426009
This commit is contained in:
Takashi Kajinami 2022-10-13 14:03:33 +09:00
parent 2090ef676f
commit 00a774f4f7
10 changed files with 5 additions and 16 deletions

View File

@ -43,7 +43,7 @@ parameters:
description: Parameters specific to the role
type: json
EnablePackageInstall:
default: 'false'
default: true
description: Set to true to enable package installation at deploy time
type: boolean
MonitoringSubscriptionOctaviaWorker:

View File

@ -79,7 +79,7 @@ parameters:
constraints:
- range: { min: 4, max: 17 }
EnablePackageInstall:
default: 'false'
default: true
description: Set to true to enable package installation at deploy time
type: boolean
ChronyAclRules:

View File

@ -79,7 +79,7 @@ parameters:
constraints:
- range: { min: 4, max: 17 }
EnablePackageInstall:
default: 'false'
default: true
description: Set to true to enable package installation at deploy time
type: boolean
ChronyAclRules:

View File

@ -28,7 +28,7 @@ parameters:
via parameter_defaults in the resource registry.
type: json
EnablePackageInstall:
default: 'false'
default: true
description: Set to true to enable package installation at deploy time
type: boolean
UpgradeLeappEnabled:

View File

@ -2,7 +2,6 @@ resource_registry:
OS::TripleO::DeployedServer::ControlPlanePort: OS::Neutron::Port
parameter_defaults:
EnablePackageInstall: True
{% for role in roles %}
{{role.name}}NetworkConfigTemplate: 'templates/net_config_static_bridge.j2'
{% endfor %}

View File

@ -9,7 +9,6 @@ resource_registry:
parameter_defaults:
CephAnsiblePlaybook: default
EnablePackageInstall: true
ServerDeletionPolicy: retain
UpgradeLevelNovaCompute: auto
UpgradeLeappToRemove: ['openvswitch2.11','ovn2.11']

View File

@ -32,10 +32,6 @@ parameter_defaults:
# Type: comma_delimited_list
DnsServers: []
# Set to true to enable package installation at deploy time
# Type: boolean
EnablePackageInstall: True
# Allow to enable/disable safe networking defaults if os-net-config would fail to run with the provided config.
# Type: boolean
NetworkSafeDefaults: True

View File

@ -51,7 +51,6 @@ parameter_defaults:
# ensure we enable ip_forward before docker gets run
KernelIpForward: 1
KernelIpNonLocalBind: 1
EnablePackageInstall: true
UndercloudNetworkConfigUpdate: True
NeutronTunnelTypes: []
NeutronBridgeMappings: ctlplane:br-ctlplane

View File

@ -335,7 +335,7 @@ parameter_merge_strategies:
parameter_defaults:
NeutronMechanismDrivers: ovn
ContainerCli: podman
EnablePackageInstall: false
EnablePackageInstall: true
SoftwareConfigTransport: POLL_SERVER_HEAT
OVNIntegrationBridge: br-int
ExtraConfig: {}

View File

@ -31,9 +31,6 @@ environments:
deployment/timesync/chrony-baremetal-ansible.yaml:
parameters:
- NtpServer
deployment/tripleo-packages/tripleo-packages-baremetal-puppet.yaml:
parameters:
- EnablePackageInstall
deployment/sshd/sshd-baremetal-ansible.yaml:
parameters:
- SshFirewallAllowAll
@ -47,7 +44,6 @@ environments:
- DnsServers
sample_values:
AddVipsToEtcHosts: false
EnablePackageInstall: true
SwiftReplicas: 1
SshFirewallAllowAll: true
StandaloneNetworkConfigTemplate: templates/standalone.j2