You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is [Packer Provisioner Plugin](https://www.packer.io/docs/extending/custom-provisioners.html) for use [MItamae](https://github.com/itamae-kitchen/mitamae).
2
+
3
+
## Installation
4
+
5
+
```sh
6
+
# require go, git
7
+
$ go get github.com/hatappi/packer-provisioner-mitamae
8
+
```
9
+
10
+
## Usage
11
+
12
+
Add the provisioner to packer file.
13
+
14
+
```json
15
+
{
16
+
"builders": [ ... ],
17
+
"provisioners": [{
18
+
"type": "mitamae",
19
+
"recipe_path": "/tmp/recipe.rb"
20
+
}]
21
+
}
22
+
```
23
+
24
+
sample is [here](./sample)
25
+
26
+
## Configuration
27
+
**Required**
28
+
29
+
- recipe_path (string) : recipe path of remote server.
30
+
31
+
**Optional**
32
+
33
+
- mitamae_version (string) : MItamae version. By default this is v1.4.5.
34
+
- bin_dir (string) : bin_dir is is the path to download MItamae. By default this is `/usr/local/bin`
35
+
- option (string) : It is an option when execute `mitamae local`. For example '-l debug'
0 commit comments