Attempt S3 upload to TrueNAS server

This commit is contained in:
Tyler 2022-03-06 16:21:45 -05:00
parent 4a6dd84bc1
commit 0a7d977e18
2 changed files with 26 additions and 2 deletions

View File

@ -10,6 +10,18 @@ steps:
- name: ubuntu - name: ubuntu
commands: commands:
- packer build ubuntu/ubuntu-20.04-amd64.json - packer build ubuntu/ubuntu-20.04-amd64.json
- name: upload
image: plugins/s3
settings:
bucket: packer
source: build/*.img.gz
target: /build
path_style: true
endpoint: http://192.168.1.11:9000
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
--- ---
kind: pipeline kind: pipeline
type: exec type: exec
@ -22,4 +34,16 @@ platform:
steps: steps:
- name: debian - name: debian
commands: commands:
- packer build debian/debian-11.2-amd64.json - packer build debian/debian-11.2-amd64.json
- name: upload
image: plugins/s3
settings:
bucket: packer
source: build/*.img.gz
target: /build
path_style: true
endpoint: http://192.168.1.11:9000
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key

View File

@ -43,7 +43,7 @@
"post-processors": [ "post-processors": [
{ {
"type": "compress", "type": "compress",
"output": "{{.BuildName}}.gz" "output": "{{ user `build_directory` }}/{{user `box_basename`}}.img.gz"
} }
], ],
"provisioners": [ "provisioners": [