Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.package
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Lu Xu
slapos.package
Commits
37393fe4
Commit
37393fe4
authored
Jun 23, 2021
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Plain Diff
Update packer usage
See merge request
nexedi/slapos.package!148
parents
e5681ab8
9594ef10
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
42 deletions
+30
-42
packer/README.md
packer/README.md
+2
-2
packer/README.vmboostrap.md
packer/README.vmboostrap.md
+2
-2
packer/debian10.json
packer/debian10.json
+26
-38
No files found.
packer/README.md
View file @
37393fe4
...
@@ -14,8 +14,8 @@ How to build one VM?
...
@@ -14,8 +14,8 @@ How to build one VM?
mkdir /opt/packer/
mkdir /opt/packer/
cd /opt/packer/
cd /opt/packer/
wget https://releases.hashicorp.com/packer/
0.10.1/packer_0.10.1
_linux_amd64.zip
wget https://releases.hashicorp.com/packer/
1.7.3/packer_1.7.3
_linux_amd64.zip
unzip packer_
0.10.1
_linux_amd64.zip
unzip packer_
1.7.3
_linux_amd64.zip
2) Building one VM (example)::
2) Building one VM (example)::
...
...
packer/README.vmboostrap.md
View file @
37393fe4
...
@@ -12,8 +12,8 @@ How to build VM with differents images size?
...
@@ -12,8 +12,8 @@ How to build VM with differents images size?
mkdir /opt/packer/
mkdir /opt/packer/
cd /opt/packer/
cd /opt/packer/
wget https://releases.hashicorp.com/packer/
0.10.1/packer_0.10.1
_linux_amd64.zip
wget https://releases.hashicorp.com/packer/
1.7.3/packer_1.7.3
_linux_amd64.zip
unzip packer_
0.10.1
_linux_amd64.zip
unzip packer_
1.7.3
_linux_amd64.zip
2) Check and install qemu
2) Check and install qemu
...
...
packer/debian10.json
View file @
37393fe4
{
{
"variables"
:
{
"builders"
:
[
"user"
:
"slapos"
,
"password"
:
"slapos"
,
"domain"
:
""
,
"disk_size"
:
"100"
,
"name"
:
"image"
,
"custom_script"
:
"scripts/empty.sh"
},
"builders"
:
[
{
{
"name"
:
"debian10-{{ user `disk_size`}}G-{{ user `name`}}"
,
"type"
:
"qemu"
,
"format"
:
"qcow2"
,
"accelerator"
:
"kvm"
,
"accelerator"
:
"kvm"
,
"disk_size"
:
"{{ user `disk_size`}}000"
,
"iso_url"
:
"https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-10.2.0-amd64-netinst.iso"
,
"iso_checksum"
:
"36de671429939e90f2a31ce3fbed0aaf"
,
"iso_checksum_type"
:
"md5"
,
"http_directory"
:
"http"
,
"ssh_username"
:
"{{user `user`}}"
,
"ssh_password"
:
"{{user `password`}}"
,
"ssh_wait_timeout"
:
"1800s"
,
"shutdown_command"
:
"echo '{{user `password`}}'|sudo -S shutdown -h now"
,
"headless"
:
true
,
"boot_wait"
:
"2s"
,
"boot_command"
:
[
"boot_command"
:
[
"<esc><wait><wait><wait><wait>"
,
"<esc><wait><wait><wait><wait>"
,
"auto preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed-debian10.cfg "
,
"auto preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed-debian10.cfg "
,
"debian-installer=en_US.UTF-8 locale=en_US keymap=fr "
,
"debian-installer=en_US.UTF-8 locale=en_US keymap=fr "
,
"netcfg/get_hostname={{ .Name }} "
,
"netcfg/get_hostname={{ .Name }} "
,
"netcfg/get_domain={{ user `domain`}} "
,
"netcfg/get_domain={{ user `domain`}} "
,
"fb=false debconf/frontend=noninteractive "
,
"fb=false debconf/frontend=noninteractive "
,
"passwd/user-fullname={{user `user`}} "
,
"passwd/user-fullname={{user `user`}} "
,
"passwd/user-password={{user `password`}} "
,
"passwd/user-password={{user `password`}} "
,
"passwd/user-password-again={{user `password`}} "
,
"passwd/user-password-again={{user `password`}} "
,
"passwd/username={{user `user`}} "
,
"passwd/username={{user `user`}} "
,
"<enter>"
"<enter>"
]
],
"boot_wait"
:
"2s"
,
"disk_size"
:
"{{ user `disk_size`}}000"
,
"format"
:
"qcow2"
,
"headless"
:
true
,
"http_directory"
:
"http"
,
"iso_checksum"
:
"md5:a3ebc76aec372808ad80000108a2593a"
,
"iso_url"
:
"https://shacache.nxdcdn.com/0a6aee1d9aafc1ed095105c052f9fdd65ed00ea9274188c9cd0072c8e6838ab40e246d45a1e6956d74ef1b04a1fc042151762f25412e9ff0cbf49418eef7992e"
,
"name"
:
"debian10-{{ user `disk_size`}}G-{{ user `name`}}"
,
"shutdown_command"
:
"echo '{{user `password`}}'|sudo -S shutdown -h now"
,
"ssh_password"
:
"{{user `password`}}"
,
"ssh_timeout"
:
"3600s"
,
"ssh_username"
:
"{{user `user`}}"
,
"type"
:
"qemu"
}
}
],
],
"provisioners"
:
[
"provisioners"
:
[
{
{
"type"
:
"shell"
,
"execute_command"
:
"echo '{{user `password`}}' | {{.Vars}} sudo -E -S bash '{{.Path}}'"
,
"execute_command"
:
"echo '{{user `password`}}' | {{.Vars}} sudo -E -S bash '{{.Path}}'"
,
"scripts"
:
[
"scripts"
:
[
"scripts/update.sh"
,
"scripts/update.sh"
,
...
@@ -60,8 +39,17 @@
...
@@ -60,8 +39,17 @@
"scripts/network-debian.sh"
,
"scripts/network-debian.sh"
,
"scripts/cleanup.sh"
,
"scripts/cleanup.sh"
,
"{{ user `custom_script` }}"
"{{ user `custom_script` }}"
]
],
"type"
:
"shell"
}
}
]
],
"variables"
:
{
"custom_script"
:
"scripts/empty.sh"
,
"disk_size"
:
"100"
,
"domain"
:
""
,
"name"
:
"image"
,
"password"
:
"slapos"
,
"user"
:
"slapos"
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment