【VMware VCF】VCF 5.2:部署整合架构的SDDC。

打印 上一主题 下一主题

主题 674|帖子 674|积分 2022

VMware 前不久发布了 VMware Cloud Foundation 5.2 版本,并带来了很多功能的升级,比如支持 vSAN Max 分解存储,管理工作负载域支持 vSAN ESA 延伸集群,通过 VCF Import 工具将现有环境中的 vSphere/vSAN 集群直接转换成管理域大概导入为 VI 工作负载域等,这应该是 VMware by Broadcom 首次针对各项产品的调整以及各个部门的整合后的一次重量级更新,有关更多功能介绍和内容消息请查看 VMware Cloud Foundation 5.2 发行说明以及发布介绍。VMware Cloud Foundation 5.2 版本的 BOM 物料清单如下图所示,集合了 VMware 所发布的最新主要产品,如 vSphere 8 U3、vSAN 8 U3 以及 NSX 4.2 等。

VMware Cloud Foundation(简称 VCF)支持标准和整合部署架构,之前(“VMware Cloud Foundation Part 05:部署 SDDC 管理域。”和“VMware Cloud Foundation Part 06:部署 VI 工作负载域。”)分享了标准架构的部署过程,现在正好借 VCF 5.2 的发布,让我们来部署一套整合架构的 SDDC。着实,我感觉标准架构和整合架构的部署过程并没有太大区别,关于这两种架构的功能和用途,完全也是你作为用户对于使用理念上的界定。在部署配置后,整合架构的 VCF 会将管理相关组件和工作负载虚拟机放在同一个工作负载域里并通过资源池的方式举行隔离,而在标准架构中,VI 域专门用来承载工作负载虚拟机。其他的并没有什么太大分别,而且你可以随时将整合架构调整为标准架构,只需要新部署一个 VI 工作负载域,然后将管理域上面的工作负载迁移到这个 VI 域皆可。
 
一、环境准备

不管是任何一种部署架构的 VCF,前期的环境准备都是一样的。安装工作负载域中的 ESXi 主机并配置 ESXi 主机的相关基础服务,规划 VCF 解决方案的网络拓扑和存储架构并准备相关部署参数工作簿,末了安装自动化部署工具 VMware Cloud Builder 后,即可开始你的 VCF 构建过程。
1)DNS/NTP 服务器
DNS 和 NTP 服务器对于 VCF 环境来说非常重要,请根据实际环境的情况,规划好管理相关组件所在信息后,在 DNS 服务器上配置好正反向域名分析。假如这些基础服务有哪个地方不对,大概会导致部署失败以及环境的不稳固。
组件名称主机名IP所在子网掩码网关DNS/NTP 服务器
ESXivcf-mgmt01-esxi01.mulab.local192.168.32.61255.255.255.0192.168.32.254192.168.32.3
vcf-mgmt01-esxi02.mulab.local192.168.32.62255.255.255.0192.168.32.254192.168.32.3
vcf-mgmt01-esxi03.mulab.local192.168.32.63255.255.255.0192.168.32.254192.168.32.3
vcf-mgmt01-esxi04.mulab.local192.168.32.64255.255.255.0192.168.32.254192.168.32.3
vCenter Servervcf-mgmt01-vcsa01.mulab.local192.168.32.65255.255.255.0192.168.32.254192.168.32.3
NSX Managervcf-mgmt01-nsx01.mulab.local(VIP)192.168.32.66255.255.255.0192.168.32.254192.168.32.3
vcf-mgmt01-nsx01a.mulab.local192.168.32.67255.255.255.0192.168.32.254192.168.32.3
SDDC Managervcf-mgmt01-sddc01.mulab.local192.168.32.70255.255.255.0192.168.32.254192.168.32.3
 
2)ESXi 主机
根据 VCF 5.2 BOM 清单要求准备用于部署 VCF 管理域的 ESXi 主机。由于是嵌套虚拟化环境,假如是部署 vSAN ESA 存储架构,请根据实际环境创建自界说 vSAN ESA HCL 文件。更多内容和细节请查看:VMware Cloud Foundation Part 04:准备 ESXi 主机。

 
3)JSON 配置文件
根据实际环境情况准备用于构建 VCF 管理域的 JSON 配置文件。License 许可证已经过处理,VCF 5.1.1 版本开始在未指定许可证的情况下以评估模式部署后支持 60 天试用期。请注意 SDDC Manager 用户的密码复杂度最低要求提高至 15 位字符。更多内容和细节请查看:VMware Cloud Foundation Part 03:准备 Excel 参数表。
  1. {
  2.     "deployWithoutLicenseKeys": false,
  3.   "skipEsxThumbprintValidation": true,
  4.   "managementPoolName": "vcf-mgmt01-np01",
  5.   "sddcManagerSpec": {
  6.     "secondUserCredentials": {
  7.       "username": "vcf",
  8.       "password": "Vcf520@password"
  9.     },
  10.     "ipAddress": "192.168.32.70",
  11.     "hostname": "vcf-mgmt01-sddc01",
  12.     "rootUserCredentials": {
  13.       "username": "root",
  14.       "password": "Vcf520@password"
  15.     },
  16.     "localUserPassword": "Vcf520@password"
  17.   },
  18.   "sddcId": "vcf-mgmt01",
  19.   "esxLicense": "00000-00000-00000-00000-00000",
  20.   "taskName": "workflowconfig/workflowspec-ems.json",
  21.   "ceipEnabled": false,
  22.   "fipsEnabled": false,
  23.   "ntpServers": ["192.168.32.3"],
  24.   "dnsSpec": {
  25.     "subdomain": "mulab.local",
  26.     "domain": "mulab.local",
  27.     "nameserver": "192.168.32.3"
  28.   },
  29.   "networkSpecs": [
  30.     {
  31.       "networkType": "MANAGEMENT",
  32.       "subnet": "192.168.32.0/24",
  33.       "gateway": "192.168.32.254",
  34.       "vlanId": "0",
  35.       "mtu": "1500",
  36.       "portGroupKey": "vcf-mgmt01-vds01-pg-mgmt",
  37.       "standbyUplinks":[],
  38.       "activeUplinks":[
  39.         "uplink1",
  40.         "uplink2"
  41.       ]
  42.     },
  43.     {
  44.       "networkType": "VMOTION",
  45.       "subnet": "192.168.40.0/24",
  46.       "gateway": "192.168.40.254",
  47.       "vlanId": "40",
  48.       "mtu": "9000",
  49.       "portGroupKey": "vcf-mgmt01-vds01-pg-vmotion",
  50.       "includeIpAddressRanges": [{"endIpAddress": "192.168.40.4", "startIpAddress": "192.168.40.1"}],
  51.       "standbyUplinks":[],
  52.       "activeUplinks":[
  53.         "uplink1",
  54.         "uplink2"
  55.       ]
  56.     },
  57.     {
  58.       "networkType": "VSAN",
  59.       "subnet": "192.168.41.0/24",
  60.       "gateway": "192.168.41.254",
  61.       "vlanId": "41",
  62.       "mtu": "9000",
  63.       "portGroupKey": "vcf-mgmt01-vds02-pg-vsan",
  64.       "includeIpAddressRanges": [{"endIpAddress": "192.168.41.4", "startIpAddress": "192.168.41.1"}],
  65.       "standbyUplinks":[],
  66.       "activeUplinks":[
  67.         "uplink1",
  68.         "uplink2"
  69.       ]
  70.     },
  71.     {
  72.       "networkType": "VM_MANAGEMENT",
  73.       "subnet": "192.168.32.0/24",
  74.       "gateway": "192.168.32.254",
  75.       "vlanId": "0",
  76.       "mtu": "1500",
  77.       "portGroupKey": "vcf-mgmt01-vds01-pg-vm-mgmt",
  78.       "standbyUplinks":[],
  79.       "activeUplinks":[
  80.         "uplink1",
  81.         "uplink2"
  82.       ]
  83.     }
  84.   ],
  85.   "nsxtSpec":
  86.   {
  87.     "nsxtManagerSize": "medium",
  88.     "nsxtManagers": [
  89.       {
  90.           "hostname": "vcf-mgmt01-nsx01a",
  91.           "ip": "192.168.32.67"
  92.       }
  93.     ],
  94.     "rootNsxtManagerPassword": "Vcf520@password",
  95.     "nsxtAdminPassword": "Vcf520@password",
  96.     "nsxtAuditPassword": "Vcf520@password",
  97.     "vip": "192.168.32.66",
  98.     "vipFqdn": "vcf-mgmt01-nsx01",
  99.     "nsxtLicense": "33333-33333-33333-33333-33333",
  100.     "transportVlanId": 42,
  101.             "ipAddressPoolSpec": {
  102.        "name": "vcf01-mgmt01-tep01",
  103.        "description": "ESXi Host Overlay TEP IP Pool",
  104.        "subnets":[
  105.           {
  106.              "ipAddressPoolRanges":[
  107.                 {
  108.                    "start": "192.168.42.1",
  109.                    "end": "192.168.42.8"
  110.                 }
  111.              ],
  112.              "cidr": "192.168.42.0/24",
  113.              "gateway": "192.168.42.254"
  114.           }
  115.        ]
  116.     }
  117.   },
  118.   "vsanSpec": {
  119.       "licenseFile": "11111-11111-11111-11111-11111",
  120.       "vsanDedup": "false",
  121.       "esaConfig": {
  122.         "enabled": true
  123.       },
  124.           "hclFile": "/opt/vmware/bringup/tmp/all.json",
  125.       "datastoreName": "vcf-mgmt01-vsan-esa-datastore01"
  126.   },
  127.   "dvsSpecs": [
  128.     {
  129.       "dvsName": "vcf-mgmt01-vds01",
  130.       "vmnics": [
  131.         "vmnic0",
  132.         "vmnic1"
  133.       ],
  134.       "mtu": 9000,
  135.       "networks":[
  136.         "MANAGEMENT",
  137.         "VMOTION",
  138.         "VM_MANAGEMENT"
  139.       ],
  140.       "niocSpecs":[
  141.         {
  142.           "trafficType":"VSAN",
  143.           "value":"HIGH"
  144.         },
  145.         {
  146.           "trafficType":"VMOTION",
  147.           "value":"LOW"
  148.         },
  149.         {
  150.           "trafficType":"VDP",
  151.           "value":"LOW"
  152.         },
  153.         {
  154.           "trafficType":"VIRTUALMACHINE",
  155.           "value":"HIGH"
  156.         },
  157.         {
  158.           "trafficType":"MANAGEMENT",
  159.           "value":"NORMAL"
  160.         },
  161.         {
  162.           "trafficType":"NFS",
  163.           "value":"LOW"
  164.         },
  165.         {
  166.           "trafficType":"HBR",
  167.           "value":"LOW"
  168.         },
  169.         {
  170.           "trafficType":"FAULTTOLERANCE",
  171.           "value":"LOW"
  172.         },
  173.         {
  174.           "trafficType":"ISCSI",
  175.           "value":"LOW"
  176.         }
  177.       ],
  178.       "nsxtSwitchConfig": {
  179.         "transportZones": [
  180.                 {
  181.           "name": "vcf-mgmt01-tz-vlan01",
  182.           "transportType": "VLAN"
  183.         }
  184.         ]
  185.       }
  186.     },
  187.     {
  188.       "dvsName": "vcf-mgmt01-vds02",
  189.       "vmnics": [
  190.         "vmnic2",
  191.         "vmnic3"
  192.       ],
  193.       "mtu": 9000,
  194.       "networks":[
  195.         "VSAN"
  196.       ],
  197.       "nsxtSwitchConfig": {
  198.         "transportZones": [ {
  199.           "name": "vcf-mgmt01-tz-overlay01",
  200.           "transportType": "OVERLAY"
  201.         },
  202.         {
  203.           "name": "vcf-mgmt01-tz-vlan02",
  204.           "transportType": "VLAN"
  205.         }
  206.         ]
  207.       }
  208.     }
  209.   ],
  210.   "clusterSpec":
  211.   {
  212.     "clusterName": "vcf-mgmt01-cluster01",
  213.     "clusterEvcMode": "",
  214.     "clusterImageEnabled": true,
  215.     "vmFolders": {
  216.       "MANAGEMENT": "vcf-mgmt01-fd-mgmt",
  217.       "NETWORKING": "vcf-mgmt01-fd-nsx",
  218.       "EDGENODES": "vcf-mgmt01-fd-edge"
  219.     },
  220.     "resourcePoolSpecs": [{
  221.       "name": "vcf-mgmt01-cluster01-rp-sddc-mgmt",
  222.       "type": "management",
  223.       "cpuReservationPercentage": 0,
  224.       "cpuLimit": -1,
  225.       "cpuReservationExpandable": true,
  226.       "cpuSharesLevel": "normal",
  227.       "cpuSharesValue": 0,
  228.       "memoryReservationMb": 0,
  229.       "memoryLimit": -1,
  230.       "memoryReservationExpandable": true,
  231.       "memorySharesLevel": "normal",
  232.       "memorySharesValue": 0
  233.     }, {
  234.       "name": "vcf-mgmt01-cluster01-rp-sddc-edge",
  235.       "type": "network",
  236.       "cpuReservationPercentage": 0,
  237.       "cpuLimit": -1,
  238.       "cpuReservationExpandable": true,
  239.       "cpuSharesLevel": "normal",
  240.       "cpuSharesValue": 0,
  241.       "memoryReservationPercentage": 0,
  242.       "memoryLimit": -1,
  243.       "memoryReservationExpandable": true,
  244.       "memorySharesLevel": "normal",
  245.       "memorySharesValue": 0
  246.     }, {
  247.       "name": "vcf-mgmt01-cluster01-rp-user-edge",
  248.       "type": "compute",
  249.       "cpuReservationPercentage": 0,
  250.       "cpuLimit": -1,
  251.       "cpuReservationExpandable": true,
  252.       "cpuSharesLevel": "normal",
  253.       "cpuSharesValue": 0,
  254.       "memoryReservationPercentage": 0,
  255.       "memoryLimit": -1,
  256.       "memoryReservationExpandable": true,
  257.       "memorySharesLevel": "normal",
  258.       "memorySharesValue": 0
  259.     }, {
  260.       "name": "vcf-mgmt01-cluster01-rp-user-vm",
  261.       "type": "compute",
  262.       "cpuReservationPercentage": 0,
  263.       "cpuLimit": -1,
  264.       "cpuReservationExpandable": true,
  265.       "cpuSharesLevel": "normal",
  266.       "cpuSharesValue": 0,
  267.       "memoryReservationPercentage": 0,
  268.       "memoryLimit": -1,
  269.       "memoryReservationExpandable": true,
  270.       "memorySharesLevel": "normal",
  271.       "memorySharesValue": 0
  272.     }]
  273.   },
  274.   "pscSpecs": [
  275.     {
  276.       "adminUserSsoPassword": "Vcf520@password",
  277.       "pscSsoSpec": {
  278.         "ssoDomain": "vsphere.local"
  279.       }
  280.     }
  281.   ],
  282.   "vcenterSpec": {
  283.       "vcenterIp": "192.168.32.65",
  284.       "vcenterHostname": "vcf-mgmt01-vcsa01",
  285.       "licenseFile": "22222-22222-22222-22222-22222",
  286.       "vmSize": "small",
  287.       "storageSize": "",
  288.       "rootVcenterPassword": "Vcf520@password"
  289.   },
  290.   "hostSpecs": [
  291.     {
  292.       "association": "vcf-mgmt01-datacenter01",
  293.       "ipAddressPrivate": {
  294.         "ipAddress": "192.168.32.61"
  295.       },
  296.       "hostname": "vcf-mgmt01-esxi01",
  297.       "credentials": {
  298.         "username": "root",
  299.         "password": "Vcf5@password"
  300.       },
  301.       "vSwitch": "vSwitch0"
  302.     },
  303.     {
  304.       "association": "vcf-mgmt01-datacenter01",
  305.       "ipAddressPrivate": {
  306.         "ipAddress": "192.168.32.62"
  307.       },
  308.       "hostname": "vcf-mgmt01-esxi02",
  309.       "credentials": {
  310.         "username": "root",
  311.         "password": "Vcf5@password"
  312.       },
  313.       "vSwitch": "vSwitch0"
  314.     },
  315.     {
  316.       "association": "vcf-mgmt01-datacenter01",
  317.       "ipAddressPrivate": {
  318.         "ipAddress": "192.168.32.63"
  319.       },
  320.       "hostname": "vcf-mgmt01-esxi03",
  321.       "credentials": {
  322.         "username": "root",
  323.         "password": "Vcf5@password"
  324.       },
  325.       "vSwitch": "vSwitch0"
  326.     },
  327.     {
  328.       "association": "vcf-mgmt01-datacenter01",
  329.       "ipAddressPrivate": {
  330.         "ipAddress": "192.168.32.64"
  331.       },
  332.       "hostname": "vcf-mgmt01-esxi04",
  333.       "credentials": {
  334.         "username": "root",
  335.         "password": "Vcf5@password"
  336.       },
  337.       "vSwitch": "vSwitch0"
  338.     }
  339.   ]
  340. }
复制代码
 
4)Cloud Builder
安装 VMware Cloud Builder 工具,用于部署 VMware Cloud Foundation 的第一个初始工作负载域(管理域),请注意 Cloud Builder 用户的密码复杂度最低要求提高至 15 位字符。更多内容和细节请查看:VMware Cloud Foundation Part 02:部署 Cloud Builder。

 
二、部署过程

假如环境一切准备就绪,可以开始 VCF 的构建过程。登录到部署工具 VMware Cloud Builder UI。

选择 VMware Cloud Foundation。

已知晓并点击 NEXT。

已完成并点击 NEXT。

上传当地 JSON 配置文件。

验证配置文件与部署环境。

点击确定部署 SDDC。

开始构建过程(Bring-up)。

部署成功。假如遇到 NSX Manager 因为 CPU 负载过高导致任务失败,可以多重试(RETRY)几次应该就好了。

点击登录 SDDC Manager。

已成功部署 VCF 5.2 。

 
三、环境信息

1)SDDC Manager

  • SDDC Manager 仪表板。


  • 工作负载域清单。


  • 管理域择要信息。


  • SDDC Manager 主机清单。


  • SDDC Manager 支持独立更新。


  • VCF 发行版本。


  • 支持脱机库设置。

 
2)vCenter Server

  • 域中的主机和集群。


  • vSAN ESA 存储架构。


  • 域管理组件虚拟机。


  • vSAN ESA 存储配置。


  • VDS 分布式交换机。

 
3)NSX Manager

  • NSX Manager 系统概览。


  • NSX Manager 部署节点。


  • NSX 传输节点主机。


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

万有斥力

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表