当前位置:网站首页>Install the terrain ovirt plug-in to provide automated management for ovirt
Install the terrain ovirt plug-in to provide automated management for ovirt
2022-06-29 13:08:00 【Yaohua】
brief introduction : install terraform-ovirt Plug in ovirt Provide automated management
ubuntu 18.04|20.04 install terrafom ovirt plug-in unit
install golang
Install first go 1.16.15 edition , The domestic download address can be through Go download - Go Chinese language network - Golang The Chinese community (studygolang.com) Visit download
apt install -y wget
wget https://studygolang.com/dl/golang/go1.16.15.linux-amd64.tar.gzUnzip to /usr/local
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.16.15.linux-amd64.tar.gzAdd environment variables
export PATH=$PATH:/usr/local/go/binView version information
When it's OK, we start to install terraform
install terraform
- install wget curl unzip
sudo apt install wget curl unzip- View the latest version and download
TER_VER=`curl -s https://api.github.com/repos/hashicorp/terraform/releases/latest | grep tag_name | cut -d: -f2 | tr -d \"\,\v | awk '{$1=$1};1'`
wget https://releases.hashicorp.com/terraform/${TER_VER}/terraform_${TER_VER}_linux_amd64.zip- Unzip and put in /usr/local/bin
$ unzip terraform_${TER_VER}_linux_amd64.zip
Archive: terraform_xxx_linux_amd64.zip
inflating: terraform
$ sudo mv terraform /usr/local/bin/- View version
[email protected]:~
Terraform v1.1.7
on linux_amd64Compilation and installation terraform-ovirt plug-in unit
- Pull the warehouse
mkdir -p $HOME/terraform-providers/
cd $HOME/terraform-providers/
git clone https://github.com/oVirt/terraform-provider-ovirt.git- Configure domestic sources
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.cn,direct
go env | grep GOPROXY- Start compilation
cd terraform-providers/
make build
cp terraform-provider-ovirt \$GOPATH/bin/边栏推荐
- Understanding of P value
- Aes-128-cbc-pkcs7padding encrypted PHP instance
- NvtBack
- qt 自定义控件 :取值范围
- Application Service Vulnerability scanning and exploitation of network security skills competition in secondary vocational schools (SSH private key disclosure)
- Simple introduction to matlab
- SCHIEDERWERK電源維修SMPS12/50 PFC3800解析
- netdata数据持久化配置
- 倍福控制器连接松下EtherCAT伺服注意事项
- 面试突击61:说一下MySQL事务隔离级别?
猜你喜欢
随机推荐
Interview shock 61: tell me about MySQL transaction isolation level?
C#通過中序遍曆對二叉樹進行線索化
Schiederwerk Power Supply repair smps12 / 50 pfc3800 Analysis
Lm07 - detailed discussion on cross section strategy of futures
360数科新能源专项产品规模突破60亿
倍福PLC通过CANOpen通信控制伺服
推荐模型复现(一):熟悉Torch-RecHub框架与使用
LeetCode_双指针_中等_328.奇偶链表
Recommended model reproduction (II): fine arrangement model deepfm, DIN
LR、CR纽扣电池对照表
bind原理及模拟实现
AcWing 234 放弃测试
C # realize the definition, stack entry and stack exit of stack structure
C#实现堆栈结构的定义、入栈、出栈
3D model downloading and animation control
如果我在深圳,到哪里开户比较好?另外想问,现在在线开户安全么?
C#实现顺序表定义、插入、删除、查找操作
推荐模型复现(四):多任务模型ESMM、MMOE
OPC of Beifu twincat3_ UA communication test case
AGCO AI frontier promotion (6.29)









