Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
1420e249
Commit
1420e249
authored
Jul 28, 2015
by
Chris Bednarski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added note on 5g upload limit, and workaround
parent
54afe10a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
website/source/docs/command-line/push.html.markdown
website/source/docs/command-line/push.html.markdown
+24
-0
No files found.
website/source/docs/command-line/push.html.markdown
View file @
1420e249
...
...
@@ -67,3 +67,27 @@ Push a Packer template with a custom token:
```
{.shell}
$ packer push -token ABCD1234 template.json
```
## Limits
`push`
is limited to 5gb upload when pushing to Atlas. To be clear, packer
*can*
build artifacts larger than 5gb, and Atlas
*can*
store artifacts larger than
5gb. However, the initial payload you push to
*start*
the build cannot exceed
5gb. If your boot ISO is larger than 5gb (for example if you are building OSX
images), you will need to put your boot ISO in an external web service and
download it during the packer run.
The easiest way to host these in a secure fashion is to upload your ISO to
[
Amazon
S3
](
http://docs.aws.amazon.com/AmazonS3/latest/dev/ShareObjectPreSignedURL.html
)
or
[
Google Cloud
Storage
](
https://cloud.google.com/storage/docs/gsutil/commands/signurl
)
and
download it using a signed URL. You can inject the signed URL into your build by
using a build variable (environment variable) in Atlas. Example:
![
Configure your signed URL in the Atlas build variables
menu
](
/assets/images/packer-signed-urls.png
)
You will also need to
[
configure your packer
template
](
http://stormchaser.local:4567/docs/templates/user-variables.html
)
to
use the variable injected by Atlas (or via
`push -var`
).
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