Attempt S3 upload to TrueNAS server
This commit is contained in:
parent
4a6dd84bc1
commit
0a7d977e18
26
.drone.yml
26
.drone.yml
|
@ -10,6 +10,18 @@ steps:
|
|||
- name: ubuntu
|
||||
commands:
|
||||
- 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
|
||||
type: exec
|
||||
|
@ -22,4 +34,16 @@ platform:
|
|||
steps:
|
||||
- name: debian
|
||||
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
|
|
@ -43,7 +43,7 @@
|
|||
"post-processors": [
|
||||
{
|
||||
"type": "compress",
|
||||
"output": "{{.BuildName}}.gz"
|
||||
"output": "{{ user `build_directory` }}/{{user `box_basename`}}.img.gz"
|
||||
}
|
||||
],
|
||||
"provisioners": [
|
||||
|
|
Loading…
Reference in New Issue