-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
11eabc7
commit 4a9ee3d
Showing
8 changed files
with
69 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,4 @@ bin/* | |
Berksfile.lock | ||
.zero-knife.rb | ||
Policyfile.lock.json | ||
results/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
--- | ||
driver: | ||
name: vagrant | ||
synced_folders: | ||
- ["./", "/tmp/package"] | ||
|
||
provisioner: | ||
name: chef_zero | ||
# You may wish to disable always updating cookbooks in CI or other testing environments. | ||
# For example: | ||
# always_update_cookbooks: <%= !ENV['CI'] %> | ||
always_update_cookbooks: true | ||
|
||
verifier: | ||
name: inspec | ||
|
||
platforms: | ||
- name: ubuntu-16.04 | ||
- name: centos-7 | ||
- name: windows-2016 | ||
driver_config: | ||
box: mwrock/Windows2016 | ||
|
||
|
||
suites: | ||
- name: default | ||
run_list: | ||
- recipe[windows-habitat-no-docker::default] | ||
verifier: | ||
inspec_tests: | ||
- test/integration/default | ||
- test/smoke/default | ||
attributes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Habitat package: windows-habitat-no-docker | ||
|
||
## Description | ||
|
||
Provide a brief description of the `windows-habitat-no-docker` plan / purpose. | ||
|
||
## Usage | ||
|
||
Describe the general usage for the `windows-habitat-no-docker` plan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Use this file to templatize your application's native configuration files. | ||
# See the docs at https://www.habitat.sh/docs/create-packages-configure/. | ||
# You can safely delete this file if you don't need it. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
$pkg_name="windows-habitat-no-docker" | ||
$pkg_origin="lauck" | ||
$pkg_version="0.1.0" | ||
$pkg_maintainer="The Habitat Maintainers <[email protected]>" | ||
$pkg_license=@("Apache-2.0") | ||
$pkg_source="http://some_source_url/releases/${pkg_name}-${pkg_version}.zip" | ||
# $pkg_filename="$pkg_name-$pkg_version.zip" | ||
# $pkg_shasum="TODO" | ||
# $pkg_deps=@() | ||
# $pkg_build_deps=@() | ||
# $pkg_lib_dirs=@("lib") | ||
# $pkg_include_dirs=@("include") | ||
# $pkg_bin_dirs=@("bin") | ||
# $pkg_svc_run="MyBinary.exe" | ||
# $pkg_exports=@{ | ||
# host="srv.address" | ||
# port="srv.port" | ||
# ssl-port="srv.ssl.port" | ||
# } | ||
# $pkg_exposes=@("port", "ssl-port") | ||
# $pkg_binds=@{ | ||
# database="port host" | ||
# } | ||
# $pkg_binds_optional=@{ | ||
# storage="port host" | ||
# } | ||
# $pkg_description="Some description." | ||
# $pkg_upstream_url="http://example.com/project-name" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters