Skip to content

garafu/packer-provisioner-goss

 
 

Repository files navigation

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 currently only works for building a linux image since goss only runs in linux.

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": "",
    "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.

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
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 camden.fisher@yale.edu

License

MIT

Copyright 2017-2020 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.

About

Goss Provisioner for Packer

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 87.9%
  • Shell 12.1%