netapp

OpenStack Train Magnum部署Kubernetes(1)--部署OpenStack Train(包含问题:Requires: qemu-kvm-rhev >= 2.10.0)

a 夏天 提交于 2020-02-07 08:06:35
基于Packstack部署OpenStack Train版本 部署环境 操作系统:CentOS Linux release 7.7.1908 OpenStack:Train PackStack:openstack-packstack-15.0.0-0.1.0rc1 部署过程 安装Centos7.7 基于BMC+ISO安装Centos7.7 安装好OS后,做一些基础配置 hostnamectl set-hostname openstack-magnum-k8s sed -i "s/SELINUX=enforcing/SELINUX=disable/g" /etc/selinux/config setenforce 0 systemctl stop NetworkManager systemctl disable NetworkManager systemctl stop firewalld systemctl disable firewalld 设置repo 设置域名服务器 echo "nameserver 114.114.114.114" /etc/resolv.conf 注:域名服务器能保证连通外网域名,比如mirrors.tuna.tsinghua.edu.cn 设置Repo vi /etc/yum.repos.d/Centos-Base.repo 注

How can I perform arithmetic to find differences of values in two CSVs?

你说的曾经没有我的故事 提交于 2019-12-13 08:42:49
问题 I'm able to diff contents ("cells") of two CSVs and get output of the highest value using the following function: Compare-Object $oldfile $latestfile -Property "UsedSize" -PassThru | select-Object "VolumeName", "UsedSize" | export-csv c:\kits\_write\snapshots\voldelta.csv -NoTypeInfo However, I wish to get the delta/difference between the values in the cells. Is it possible to perform arithmetic to find differences of values in two CSVs? To provide context, we're increasing our NetApp volume

Combining output of two Cmdlets to get a common output

跟風遠走 提交于 2019-12-11 04:31:06
问题 I wanted to extract a filerview from Net App commandlets, i wrote a an expression below Get-NaLun | Select @{Name="LUN";Expression={$_.path}},@{Name="Size";Expression= {[math]::Round([decimal]$_.size/1gb,0)}},` @{Name="OnlineStatus";Expression={$_.online}},` @{Name="Group";Expression={([string]::Join(",",(Get-NaLun $_.path | get-nalunmap | select -ExpandProperty initiatorgroupname)))}},` @{Name="LunID";Expression={Get-NaLun $_.path | get-nalunmap | select -ExpandProperty lunid}} | Export-Csv