Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ganto/packer-builder-ovirt
A builder plugin for Packer.io to support building oVirt images
https://github.com/ganto/packer-builder-ovirt
ovirt packer packer-builder
Last synced: 2 months ago
JSON representation
A builder plugin for Packer.io to support building oVirt images
- Host: GitHub
- URL: https://github.com/ganto/packer-builder-ovirt
- Owner: ganto
- License: mpl-2.0
- Created: 2019-06-10T12:36:18.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T01:42:37.000Z (about 4 years ago)
- Last Synced: 2024-06-20T12:05:02.336Z (7 months ago)
- Topics: ovirt, packer, packer-builder
- Language: Go
- Size: 46.9 KB
- Stars: 11
- Watchers: 3
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/ganto/packer-builder-ovirt.svg?branch=master)](https://travis-ci.org/ganto/packer-builder-ovirt)
# oVirt packer.io builder
This builder plugin extends [packer.io](https://packer.io) to support building
images for [oVirt](https://www.ovirt.org).## Development
### Prerequisites
To compile this plugin you must have a working Go compiler setup. Follow the
[official instructions](https://golang.org/doc/install) or use your local
package manager to install Go on your system.### Compile the plugin
```shell
cd $GOPATH
mkdir -p src/github.com/ganto
cd src/github.com/ganto
git clone https://github.com/ganto/packer-builder-ovirt.git
cd packer-builder-ovirt
PACKER_DEV=1 make bin
```If the build was successful, you should now have the `packer-builder-ovirt`
binary in your `$GOPATH/bin` directory.In order to do a cross-compile, run the following build command:
```shell
XC_OS="linux" XC_ARCH="386 amd64" make bin
```This builds 32 and 64 bit binaries for Linux. Native binaries will be installed
in `$GOPATH/bin` as above, and cross-compiled ones in the `pkg/` directory.