-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename mentions of repo name from imjoey to ovirt (#147)
* Rename repo name from github.com/imjoey to github.com/ovirt Signed-off-by: Roy Golan <[email protected]> * Adapt build instruction in README Since imjoey already converted the project to use modules, we can just dump GOPATH Signed-off-by: Roy Golan <[email protected]> * Lowercase ovirt as go_import_path to fix ci errors Signed-off-by: imjoey <[email protected]>
- Loading branch information
Showing
6 changed files
with
10 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ Terraform oVirt Provider plugin | |
=============================== | ||
|
||
[![Build Status](https://travis-ci.org/imjoey/terraform-provider-ovirt.svg?branch=master)](https://travis-ci.org/imjoey/terraform-provider-ovirt) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/imjoey/terraform-provider-ovirt)](https://goreportcard.com/report/github.com/imjoey/terraform-provider-ovirt) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/ovirt/terraform-provider-ovirt)](https://goreportcard.com/report/github.com/ovirt/terraform-provider-ovirt) | ||
|
||
|
||
This plugin allows Terraform to work with the oVirt Virtual Machine management platform. | ||
|
@@ -29,22 +29,12 @@ Requirements | |
Building The Provider | ||
--------------------- | ||
|
||
Clone repository to: `$GOPATH/src/github.com/imjoey/terraform-provider-ovirt` | ||
|
||
```sh | ||
$ mkdir -p $GOPATH/src/github.com/imjoey | ||
$ cd $GOPATH/src/github.com/imjoey | ||
$ git clone [email protected]:imjoey/terraform-provider-ovirt | ||
``` | ||
|
||
Enter the provider directory and build the provider | ||
|
||
```sh | ||
$ cd $GOPATH/src/github.com/imjoey/terraform-provider-ovirt | ||
$ git clone [email protected]:ovirt/terraform-provider-ovirt | ||
$ cd terraform-provider-ovirt | ||
$ make build | ||
``` | ||
|
||
|
||
Using the provider | ||
------------------ | ||
If you're building the provider, follow the instructions to [install it as a plugin.](https://www.terraform.io/docs/plugins/basics.html#installing-a-plugin) After placing it into your plugins directory, run `terraform init` to initialize it. | ||
|
@@ -92,10 +82,9 @@ provider "ovirt" { | |
|
||
Provider Documents | ||
-------------- | ||
Currently the documents for this provider is not hosted by the offcial site [Terraform Providers](https://www.terraform.io/docs/providers/index.html). Please enter the provider directory and build the website locallly. | ||
Currently the documents for this provider is not hosted by the official site [Terraform Providers](https://www.terraform.io/docs/providers/index.html). Please enter the provider directory and build the website locally. | ||
|
||
```sh | ||
$ cd $GOPATH/src/github.com/imjoey/terraform-provider-ovirt | ||
$ make website | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/imjoey/terraform-provider-ovirt | ||
module github.com/ovirt/terraform-provider-ovirt | ||
|
||
go 1.12 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters