redhat_openstack_16.1_installation

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
redhat_openstack_16.1_installation [2022/02/08 05:48] koovredhat_openstack_16.1_installation [2022/02/08 12:47] (현재) – [deploy.sh] koov
줄 23: 줄 23:
   -e /home/stack/custom/custom_env.yaml \   -e /home/stack/custom/custom_env.yaml \
   --ntp-server 192.168.10.1 \   --ntp-server 192.168.10.1 \
 +  --libvirt-type kvm \
   --log-file /home/stack/overcloud_deploy_${date}.log   --log-file /home/stack/overcloud_deploy_${date}.log
 </code> </code>
줄 32: 줄 33:
 #!/bin/bash #!/bin/bash
 cd /usr/share/openstack-tripleo-heat-templates cd /usr/share/openstack-tripleo-heat-templates
-./tools/process-templates.py -o ~/templates -n /home/stack/network_data.yaml -r /home/stack/roles_data.yaml+./tools/process-templates.py -o ~/templates -n /home/stack/custom/network_data.yaml -r /home/stack/custom/roles_data.yaml
 </code> </code>
 </WRAP> </WRAP>
줄 523: 줄 524:
 </WRAP> </WRAP>
  
 +===== template =====
  
 +==== network-environment.yaml ====
 +<WRAP prewrap>
 +<code yaml>
 +resource_registry:
 +  OS::TripleO::Controller::Net::SoftwareConfig:
 +    ../network/config/custom-nic/controller.yaml
 +  OS::TripleO::Compute::Net::SoftwareConfig:
 +    ../network/config/custom-nic/compute.yaml
 +parameter_defaults:
 +  StorageNetCidr: '172.16.1.0/24'
 +  StorageAllocationPools: [{'start': '172.16.1.4', 'end': '172.16.1.250'}]
 +  StorageNetworkVlanID: 30
 +  StorageMgmtNetCidr: '172.16.3.0/24'
 +  StorageMgmtAllocationPools: [{'start': '172.16.3.4', 'end': '172.16.3.250'}]
 +  StorageMgmtNetworkVlanID: 40
 +  InternalApiNetCidr: '172.16.2.0/24'
 +  InternalApiAllocationPools: [{'start': '172.16.2.4', 'end': '172.16.2.250'}]
 +  InternalApiNetworkVlanID: 20
 +  TenantNetCidr: '172.16.0.0/24'
 +  TenantAllocationPools: [{'start': '172.16.0.4', 'end': '172.16.0.250'}]
 +  TenantNetworkVlanID: 50
 +  TenantNetPhysnetMtu: 1500
 +  ExternalNetCidr: '192.168.0.0/24'
 +  ExternalAllocationPools: [{'start': '192.168.0.140', 'end': '192.168.0.149'}]
 +  ExternalInterfaceDefaultRoute: '192.168.0.1'
 +  DnsServers: ['8.8.8.8']
 +  NeutronNetworkType: 'geneve,vlan,flat'
 +  NeutronNetworkVLANRanges: 'datacentre:1:1000'
 +  BondInterfaceOvsOptions: "bond_mode=active-backup"
 +  NeutronEnableDVR: false
 +</code>
 +</WRAP>
  
 ===== NIC Config ===== ===== NIC Config =====
줄 693: 줄 727:
 ######################################################################### #########################################################################
 resources: resources:
 +
 +  MinViableMtu:
 +    # This resource resolves the minimum viable MTU for interfaces, bonds and
 +    # bridges that carry multiple VLANs. Each VLAN may have different MTU. The
 +    # bridge, bond or interface must have an MTU to allow the VLAN with the
 +    # largest MTU.
 +    type: OS::Heat::Value
 +    properties:
 +      type: number
 +      value:
 +        yaql:
 +          expression: $.data.max()
 +          data:
 +            - {get_param: ControlPlaneMtu}
 +            - {get_param: StorageMtu}
 +            - {get_param: InternalApiMtu}
 +            - {get_param: TenantMtu}
 +
   OsNetConfigImpl:   OsNetConfigImpl:
     type: OS::Heat::SoftwareConfig     type: OS::Heat::SoftwareConfig
줄 947: 줄 999:
     description: A list of DNS search domains to be added (in order) to resolv.conf.     description: A list of DNS search domains to be added (in order) to resolv.conf.
     type: comma_delimited_list     type: comma_delimited_list
 +#########################################################################
 resources: resources:
 +
 +  MinViableMtu:
 +    # This resource resolves the minimum viable MTU for interfaces, bonds and
 +    # bridges that carry multiple VLANs. Each VLAN may have different MTU. The
 +    # bridge, bond or interface must have an MTU to allow the VLAN with the
 +    # largest MTU.
 +    type: OS::Heat::Value
 +    properties:
 +      type: number
 +      value:
 +        yaql:
 +          expression: $.data.max()
 +          data:
 +            - {get_param: ControlPlaneMtu}
 +            - {get_param: StorageMtu}
 +            - {get_param: InternalApiMtu}
 +            - {get_param: TenantMtu}
 +
   OsNetConfigImpl:   OsNetConfigImpl:
     type: OS::Heat::SoftwareConfig     type: OS::Heat::SoftwareConfig
줄 1010: 줄 1081:
                     list_concat_unique:                     list_concat_unique:
                       - get_param: StorageInterfaceRoutes                       - get_param: StorageInterfaceRoutes
-################ Sub Interface [StorageMgmt] 
-                - type: vlan 
-                  mtu: 
-                    get_param: StorageMgmtMtu 
-                  vlan_id: 
-                    get_param: StorageMgmtNetworkVlanID 
-                  addresses: 
-                  - ip_netmask: 
-                      get_param: StorageMgmtIpSubnet 
-                  routes: 
-                    list_concat_unique: 
-                      - get_param: StorageMgmtInterfaceRoutes 
 ################ Sub Interface [InternalApi] ################ Sub Interface [InternalApi]
                 - type: vlan                 - type: vlan
  • redhat_openstack_16.1_installation.1644299334.txt.gz
  • 마지막으로 수정됨: 2022/02/08 05:48
  • 저자 koov