Sylvia Moss
201869d627
Update HCL2 and JSON example for amazon builders ( #10645 )
...
* move hcl2 example up over json to amazon-ebs
* switch hcl and json templates for all amazon builders
* fix json format
2021-02-17 10:32:13 +01:00
Megan Marsh
6ea7edf4e9
update changelog
2021-02-16 16:17:47 -08:00
Megan Marsh
99087d71bc
Merge pull request #10641 from zchsh/zs.bump-components
...
Bump components to remove md processing, fix theme
2021-02-16 14:33:17 -08:00
Megan Marsh
1710590418
Merge pull request #10633 from hashicorp/azr_init_no_magic_host
...
Packer init: remove host and namespace guessing
2021-02-16 14:32:20 -08:00
Megan Marsh
10d32bda6d
Merge pull request #10591 from neumayer/retry
...
Add retry strategies to oci calls
2021-02-16 13:59:26 -08:00
Megan Marsh
0d14df3020
Merge pull request #10635 from hashicorp/docs_small_changes
...
Docs small updates
2021-02-16 13:58:32 -08:00
Megan Marsh
2065de0b4f
Merge pull request #10642 from hashicorp/wilken_init_no_magic_host
...
github/getter: Adds a hostname check to Get function
2021-02-16 11:27:11 -08:00
Wilken Rivera
728c5a217d
Add test case for non-github hostname
...
Tests results on current branch; install succeeded which was not expected
```
2021/02/16 14:02:24 ui: Installed plugin example.com/sylviamoss/comment v0.2.19 in "/tmp/pkr-test-cfg-dir-6_pkr_config458005728/example.com/sylviamoss/comment/packer-plugin-comment_v0.2.19_x5.0_linux_amd64"
init_test.go:361: InitCommand.Run() = 0, want 1
init_test.go:381: unexpected dir hash after init: string(
- "h1:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=",
+ "h1:iVtzkl/nVm2KiLvlz8rH56ME8QEqRxq8+XT2Lo6bzGU=",
)
--- FAIL: TestInitCommand_Run (6.39s)
--- PASS: TestInitCommand_Run/already-installed-no-op (0.01s)
--- PASS: TestInitCommand_Run/already-installed-no-op/-subtest-0 (0.00s)
--- PASS: TestInitCommand_Run/already-installed-upgrade (2.30s)
--- PASS: TestInitCommand_Run/already-installed-upgrade/-subtest-0 (0.06s)
--- PASS: TestInitCommand_Run/release-with-no-binary (0.17s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-works (1.32s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-works/-subtest-0 (0.01s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-old-api-fails (1.42s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-old-api-fails/-subtest-0 (0.01s)
--- FAIL: TestInitCommand_Run/unsupported-non-github-source-address (1.18s)
```
Tests results after change with change in this branch
```
2021/02/16 14:03:14 [TRACE] getting available versions for the example.com/sylviamoss/comment plugin
2021/02/16 14:03:14 [TRACE] &{%!q(*github.Client=<nil>) "packer-getter-github-1.7.0-dev"} getter could not get release: example.com/sylviamoss/comment doesn't appear to be a valid github.com source address; check source and try again.
2021/02/16 14:03:14 [DEBUG] will try to install: []
2021/02/16 14:03:14 ui error: no release version found for the example.com/sylviamoss/comment plugin matching the constraint(s): "v0.2.19"
--- PASS: TestInitCommand_Run (5.38s)
--- PASS: TestInitCommand_Run/already-installed-no-op (0.01s)
--- PASS: TestInitCommand_Run/already-installed-no-op/-subtest-0 (0.00s)
--- PASS: TestInitCommand_Run/already-installed-upgrade (2.08s)
--- PASS: TestInitCommand_Run/already-installed-upgrade/-subtest-0 (0.07s)
--- PASS: TestInitCommand_Run/release-with-no-binary (0.21s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-works (1.20s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-works/-subtest-0 (0.01s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-old-api-fails (1.88s)
--- PASS: TestInitCommand_Run/manually-installed-single-component-plugin-old-api-fails/-subtest-0 (0.01s)
--- PASS: TestInitCommand_Run/unsupported-non-github-source-address (0.00s)
```
2021-02-16 14:03:29 -05:00
Wilken Rivera
f48583c57e
github/getter: Adds a hostname check to Get function
...
This change adds a simple hostname validation check to validate that a
plugins source address is github.com before continuing with the Get
call. An issue was encountered when using a hostname different from
github.com, where the getter would continue to pull a plugin from GitHub
even if the hostname was something like "example.com". See log details
below.
Before change
```
2021/02/16 12:49:41 [TRACE] fetching checksums file for the "0.0.2" version of the example.com/hashicorp/docker plugin in
"/home/wilken/.packer.d/plugins/example.com/hashicorp/docker"...
2021/02/16 12:49:41 [DEBUG] github-getter: getting "https://github.com/hashicorp/packer-plugin-docker/releases/download/v0.0.2/packer-plugin-docker_v0.0.2_SHA256SUMS "
2021/02/16 12:49:42 [TRACE] Ignoring remote binary packer-plugin-docker_v0.0.2_x5.0_linux_arm64.zip, wrong system, expected
2021/02/16 12:49:42 [TRACE] About to get: packer-plugin-docker_v0.0.2_x5.0_linux_amd64.zip
2021/02/16 12:49:42 [DEBUG] github-getter: getting "https://github.com/hashicorp/packer-plugin-docker/releases/download/v0.0.2/packer-plugin-docker_v0.0.2_x5.0_linux_amd64.zip "
```
After change
```
2021/02/16 13:36:32 [TRACE] for plugin example.com/hashicorp/docker found 0 matching installation(s)
2021/02/16 13:36:32 [TRACE] getting available versions for the the example.com/hashicorp/docker plugin
2021/02/16 13:36:32 [TRACE] &{%!q(*github.Client=<nil>) "packer-getter-github-1.7.0-dev"} getter could not get release: example.com/hashicorp/docker doesn't appear to be a valid github.com source address; check source and try again.
2021/02/16 13:36:32 [DEBUG] will try to install: []
2021/02/16 13:36:32 [INFO] (telemetry) Finalizing. no release version found for the example.com/hashicorp/docker plugin matching the constraint(s): ">=v0.0.2"
2021/02/16 13:36:32 waiting for all plugin processes to complete...
```
2021-02-16 13:38:57 -05:00
Zach Shilton
6cc3933c77
Bump components to remove md processing, fix theme
2021-02-16 12:55:09 -05:00
Adrien Delorme
4409991887
add emojis to version table
2021-02-16 14:37:24 +01:00
sylviamoss
6e195f92e8
update components docs
2021-02-16 14:31:05 +01:00
Sylvia Moss
715fe51517
Update website/content/docs/commands/fix.mdx
...
Co-authored-by: Adrien Delorme <azr@users.noreply.github.com>
2021-02-16 14:09:32 +01:00
Adrien Delorme
d2a8408577
update "how to comment in json" guide
2021-02-16 13:57:33 +01:00
Adrien Delorme
192e85951f
`packer build template.pkr.hcl` in .github/CONTRIBUTING.md
2021-02-16 13:54:49 +01:00
Adrien Delorme
e2a337e0ea
`packer build template.pkr.hcl`
2021-02-16 13:49:13 +01:00
sylviamoss
c29b9f957d
reorder terminology
2021-02-16 12:51:49 +01:00
Sylvia Moss
514be931be
Update website/content/partials/guides/hcl2-beta-note.mdx
...
Co-authored-by: Adrien Delorme <azr@users.noreply.github.com>
2021-02-16 12:48:39 +01:00
Sylvia Moss
1049db4f98
Update website/content/docs/commands/fix.mdx
...
Co-authored-by: Adrien Delorme <azr@users.noreply.github.com>
2021-02-16 12:48:33 +01:00
sylviamoss
9ce9f49f4d
fix types and add text to templates index
2021-02-16 12:48:07 +01:00
sylviamoss
47adccabf2
swtichs the sidebar order of HCL and JSON templates
2021-02-16 10:13:05 +01:00
sylviamoss
1a20146993
update command section
2021-02-16 10:08:47 +01:00
Glenn McDonald
496e3ed07b
Fix invalid link for env function docs ( #10637 )
2021-02-16 09:15:15 +01:00
sylviamoss
9718af4982
update hcl guides
2021-02-15 18:17:39 +01:00
Sylvia Moss
e0557f84e9
Add access config to generated amazon ami data source ( #10634 )
2021-02-15 17:35:03 +01:00
Adrien Delorme
f7ee3f8ead
Update website/content/guides/1.7-template-upgrade.mdx
...
Co-authored-by: Sylvia Moss <moss@hashicorp.com>
2021-02-15 17:24:56 +01:00
Adrien Delorme
8208f425c8
addrs: remove Plugin.ForDisplay func, the String one does the job
...
to make things less confusing
2021-02-15 15:32:42 +01:00
Adrien Delorme
516e919c5e
Update init.mdx
2021-02-15 15:15:00 +01:00
Adrien Delorme
13b34e2c73
Update 1.7-template-upgrade.mdx
2021-02-15 15:13:36 +01:00
Adrien Delorme
ba87656273
Update CHANGELOG.md
2021-02-15 14:20:50 +01:00
Adrien Delorme
429262030f
fix paths for windows !
2021-02-15 14:11:00 +01:00
Adrien Delorme
4487152d1e
cosmetic commit
2021-02-15 14:07:22 +01:00
Adrien Delorme
72e4dc4cb5
update docs to remove 'magic' required_plugin block usages
2021-02-15 13:58:58 +01:00
Adrien Delorme
7809242f41
quote template example
2021-02-15 13:47:40 +01:00
Adrien Delorme
632e918c52
Update plugins_test.go
2021-02-15 13:47:40 +01:00
Adrien Delorme
4cb94a67b0
Update types.variables.go
2021-02-15 13:47:40 +01:00
Adrien Delorme
029729225d
tests and fixes
2021-02-15 13:47:39 +01:00
Adrien Delorme
aeecfcd422
show version constrain error in case it's handy
2021-02-15 13:47:39 +01:00
Adrien Delorme
9f545c28fe
required_plugins: prevent using `plugin = "version"`, and show an example
2021-02-15 13:47:39 +01:00
Adrien Delorme
fe12d53e77
addr: remove support for defaulting plugin namespace and host
2021-02-15 13:47:39 +01:00
Sylvia Moss
00fce3c46f
Add v1.7.0 template upgrade guide ( #10615 )
2021-02-15 11:38:11 +01:00
Megan Marsh
bd7b31853e
Multi plugin naming ( #10608 )
2021-02-15 11:10:43 +01:00
Megan Marsh
cac6b04546
update help text for hcl2_upgrade ( #10624 )
2021-02-15 11:03:44 +01:00
Megan Marsh
80ed988ffe
Hcl2 upgrade fix ( #10625 )
...
* fix random nil pointer dereference I found while debugging hcl2_upgrade issues
* fix hcl2_upgrade command by creating passthroughs for all text template fields
2021-02-15 10:40:21 +01:00
Megan Marsh
b20dea6aec
Merge pull request #10614 from hashicorp/azr_acc_test_old_single_component_plugins
...
Acc test "old style" single component plugins
2021-02-12 14:22:29 -08:00
Megan Marsh
4f5af3b919
Merge pull request #10619 from hashicorp/hcl2_upgrade_annotations
...
Add -with-annotation flag to hcl2_upgrade command
2021-02-12 14:17:10 -08:00
sylviamoss
e69410b633
fix lint
2021-02-12 15:38:44 +01:00
sylviamoss
855ba9775a
add docs
2021-02-12 15:31:13 +01:00
sylviamoss
76e3d57cae
add with-annotation flag to hcl2_upgrade
2021-02-12 15:18:53 +01:00
Adrien Delorme
7089e0854a
rename setup func to avoid name conflict
2021-02-11 18:00:18 +01:00