重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
OCT 17 2018 BRIAN CAIN
10年积累的成都网站设计、成都做网站、外贸网站建设经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站设计后付款的网站建设流程,更有黄州免费网站建设让你可以放心的选择与我们合作。
We are pleased to announce the release of Vagrant 2.2.0. Vagrant is a tool for building and distributing development environments. The highlight of this release is the introduction of Vagrant Cloud command line tool.
DOWNLOAD NOW
This release of Vagrant includes a handful of bug fixes and improvements. Notable updates in this release include:
cloud
commandabort
option to halt a Vagrant runupload
command for easily transferring files to guestsThis release introduces a brand new Vagrant command, cloud
, which can be used to interact with Vagrant Cloudthrough the command line instead of a browser or HTTP. It comes with a variety of cloud
subcommands, however this post will only cover a few highlights. If you’d like to know more about this feature, check out the documentation for more information!
vagrant cloud search hashicorp --limit 5
| NAME | VERSION | DOWNLOADS | PROVIDERS |
+-------------------------+---------+-----------+---------------------------------+
| hashicorp/precise64 | 1.1.0 | 6,689,515 | virtualbox,vmware_fusion,hyperv |
| hashicorp/precise32 | 1.0.0 | 2,264,067 | virtualbox |
| hashicorp/boot2docker | 1.7.8 | 59,376 | vmware_desktop,virtualbox |
| hashicorp/connect-vm | 0.1.0 | 6,912 | vmware_desktop,virtualbox |
| hashicorp/vagrant-share | 0.1.0 | 3,676 | vmware_desktop,virtualbox |
+-------------------------+---------+-----------+---------------------------------+
If you just want box names and are not interested in a formatted table, you can reduce the result with the --short
flag:
vagrant cloud search hashicorp --limit 5 --short
hashicorp/precise64
hashicorp/precise32
hashicorp/boot2docker
hashicorp/connect-vm
hashicorp/vagrant-share
There are lots of ways to use the search
command with various filters to find the right box to use. Give it a try today!
So, you’ve built a new Vagrant box with Packer and want to share it with the world on Vagrant Cloud, but you’re not sure how to go about sharing the box file? The publish
subcommand helps you through the process of creating and uploading a new box entry on Vagrant Cloud with a single command. Once invoked, it will confirm the new box details before publishing to Vagrant Cloud.
Note that the Progress
bar will get removed after the box has finished uploading to Vagrant Cloud, but was left in for example sake for this blog post.
vagrant cloud publish briancain/supertest 1.0.0 virtualbox boxes/ubuntu-16.04.virtualbox.box --description "Now with more bits!" --version-description "A cool version" --release --short-description "More bits"
You are about to publish a box on Vagrant Cloud with the following options:
briancain/supertest: (v1.0.0) for provider 'virtualbox'
Automatic Release: true
Box Description: Now with more polygons
Box Short Description: Really short
Version Description: A cool version
Do you wish to continue? [y/N] y
==> cloud: Creating a box entry...
==> cloud: Creating a version entry...
==> cloud: Creating a provider entry...
==> cloud: Uploading provider with file /Users/brian/code/vagrant_cloud/boxes/ubuntu-16.04.virtualbox.box
Progress: 14% (Rate: 6172k/s, Estimated time remaining: 0:01:10)
==> cloud: Releasing box...
Complete! Published briancain/supertest
tag: briancain/supertest
username: briancain
name: supertest
private: false
downloads: 0
created_at: 2018-09-26T21:03:15.737Z
updated_at: 2018-09-26T21:05:07.388Z
short_description: More bits
description_markdown: Now with more bits!
current_version: 1.0.0
providers: virtualbox
old_versions: ...
There are a lot more features that come along with the new cloud
command, so check it out today!
Vagrant now gives users the ability to define project specific plugins that are required for a Vagrantfile. Vagrant will require these plugins be installed and available for the project. If the plugins are not available, it will attempt to automatically install them into the local project. When requiring a single plugin, a string can be provided:
config.vagrant.plugins = "vagrant-plugin"
If multiple plugins are required, they can be provided as an array:
config.vagrant.plugins = ["vagrant-plugin", "vagrant-other-plugin"]
Plugins can also be defined as a Hash, which supports setting extra options for the plugins. When a Hash is used, the key is the name of the plugin, and the value is an options Hash for the plugin. For example, to set an explicit version of a plugin to install:
config.vagrant.plugins = {"vagrant-scp" => {"version" => "1.0.0"}}
More information about configuring your Vagrantfile to install local plugins can be found on the documentation for Vagrantfiles!
Vagrant now includes a new upload
command. This command allows for easy uploading of one-off files or directories from the host to a running guest. The upload command utilizes the underlying communicator configured for the target guest to provide support for uploading files and directories.
vagrant upload test.rb
Uploading test.rb to test.rb
Upload has completed successfully!
Source: test.rb
Destination: test.rb
The upload command also includes support for performing compression on the host prior to upload and automatic decompression on the guest. This can be very useful when uploading large directories as it not only compresses the content to be uploaded but also reduces the number of uploaded items to one. For more information about the new upload command, please refer to the documentation.
The Vagrant 2.2.0 release also includes a number of other improvements and bug fixes. For a detailed list of all the changes in this release, see the CHANGELOG.