All Projects → YaleUniversity → Packer Provisioner Goss

YaleUniversity / Packer Provisioner Goss

Licence: mit
Goss Provisioner for Packer

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Packer Provisioner Goss

Amber
Reflective PE packer.
Stars: ✭ 594 (+552.75%)
Mutual labels:  packer
Ansible Windows Docker Springboot
Example project showing how to provision, deploy, run & orchestrate Spring Boot apps with Docker Windows Containers on Docker Windows native using Packer, Powershell, Vagrant & Ansible
Stars: ✭ 58 (-36.26%)
Mutual labels:  packer
Packer Centos 6
This build has been moved - see README.md
Stars: ✭ 78 (-14.29%)
Mutual labels:  packer
Fdb Cloud Test
Packer + Terraform setup to experiment with FDB clusters in the cloud.
Stars: ✭ 23 (-74.73%)
Mutual labels:  packer
Ansible Role Packer rhel
Ansible Role - Packer RHEL/CentOS Configuration for Vagrant VirtualBox
Stars: ✭ 45 (-50.55%)
Mutual labels:  packer
Spel
STIG-Partitioned Enterprise Linux (spel)
Stars: ✭ 66 (-27.47%)
Mutual labels:  packer
Juicebox
A virtual machine designed for programming workshops.
Stars: ✭ 533 (+485.71%)
Mutual labels:  packer
Packerlicious
use python to make hashicorp packer templates
Stars: ✭ 90 (-1.1%)
Mutual labels:  packer
Osx Vm Templates
macOS templates for Packer and VeeWee.
Stars: ✭ 1,050 (+1053.85%)
Mutual labels:  packer
Javascript Code Protection Example
An example of JavaScript code protection
Stars: ✭ 76 (-16.48%)
Mutual labels:  packer
Gentoo Build
shell scripts that builds systemd based gentoo box for x86_64 platform
Stars: ✭ 24 (-73.63%)
Mutual labels:  packer
Hcloud Okd4
Deploy OKD4 (OpenShift) on Hetzner Cloud
Stars: ✭ 29 (-68.13%)
Mutual labels:  packer
Appacker
Tool for making single .exe application packages
Stars: ✭ 70 (-23.08%)
Mutual labels:  packer
Malboxes
Builds malware analysis Windows VMs so that you don't have to.
Stars: ✭ 900 (+889.01%)
Mutual labels:  packer
Chrome Pak Customizer
a simple command-line tool to pack and unpack pak files in chrome or chromium-based browser
Stars: ✭ 79 (-13.19%)
Mutual labels:  packer
Terratest
Terratest is a Go library that makes it easier to write automated tests for your infrastructure code.
Stars: ✭ 5,797 (+6270.33%)
Mutual labels:  packer
Packer For Vsphere And More
Stars: ✭ 63 (-30.77%)
Mutual labels:  packer
Packer Templates
Stars: ✭ 90 (-1.1%)
Mutual labels:  packer
Packer Ubuntu 1404
DEPRECATED - Packer Example - Ubuntu 14.04 Vagrant Box using Ansible provisioner
Stars: ✭ 81 (-10.99%)
Mutual labels:  packer
Terraform Aws Couchbase
Reusable infrastructure modules for running Couchbase on AWS
Stars: ✭ 73 (-19.78%)
Mutual labels:  packer

Goss Packer Provisioner

Wouldn't it be nice if you could run goss tests against an image during a packer build?

Well, I thought it would, so now you can!

This runs during the provisioning process since the machine being provisioned is only available at that time.

There is an example packer build with goss tests in the example/ directory.

Configuration

"provisioners" : [
  {
    "type": "goss",
    "tests": [
      "goss/goss.yaml"
    ]
  }
]

Additional (optional) properties

"provisioners" : [
  {
    # Packer Args
    "type": "goss",

    # Packer Provisioner Args
    "arch": "amd64",
    "downloadPath": "/tmp/goss-VERSION-linux-ARCH",
    "inspect": "{{user `inspect_mode`}}",
    "password": "",
    "skipInstall": false,
    "url":"https://github.com/aelsabbahy/goss/releases/download/vVERSION/goss-linux-ARCH",
    "username": "",
    "version": "0.3.2",

    # GOSS Args
    "tests": [
      "goss/goss.yaml"
    ],
    "remote_folder": "/tmp",
    "remote_path": "/tmp/goss",
    "skip_ssl": false,
    "use_sudo": false,
    "format": "",
    "goss_file": "",
    "vars_file": "",
    "target_os": "Linux",
    "vars_env": {
      "ARCH": "amd64",
      "PROVIDER": "{{user `cloud-provider`}}"
    },
    "vars_inline": {
      "OS": "centos",
      "version": "{{user `version`}}"
    },
    "retry_timeout": "0s",
    "sleep": "1s"
  }
]

Spec files

Goss spec file and debug spec file (goss render -d) are downloaded to /tmp folder on local machine from the remote VM. These files are exact specs GOSS validated on the VM. The downloaded GOSS spec can be used to validate any other VM image for equivalency.

Windows support

This now has support for Windows. Set the optional parameter target_os to Windows. Currently, the vars_env parameter must include GOSS_USE_ALPHA=1 as specified in goss's feature parity document. In the future when goss come of of alpha for Windows this parameter will not be required.

Installation

  1. Download the most recent release for your platform from here..

  2. Rename the binary to packer-provisioner-goss

  3. Place the file in one of the directories where packer looks for plugins:

Once the plugin is named properly, Packer automatically discovers plugins in the following directories in the given order. If a conflicting plugin is found later, it will take precedence over one found earlier.

The directory where packer is, or the executable directory.

~/.packer.d/plugins on Unix systems or %APPDATA%/packer.d/plugins on Windows.

The current working directory.

  1. Set binary to be executable chmod +x packer-provisioner-goss

Build

Using Golang docker image

docker run --rm -it -v "$PWD":/usr/src/packer-provisioner-goss -w /usr/src/packer-provisioner-goss -e 'VERSION=v1.0.0' golang:1.13 bash
go test ./...
for GOOS in darwin linux windows; do
  for GOARCH in 386 amd64; do
    export GOOS GOARCH
      go get -v ./...
      go build -v -o packer-provisioner-goss-${VERSION}-$GOOS-$GOARCH
  done
done

Author

E. Camden Fisher [email protected]

License

MIT

Copyright 2017-2021 Yale University

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].