packer-templates/.drone.yml

49 lines
1006 B
YAML
Raw Normal View History

2022-03-06 20:36:39 +00:00
kind: pipeline
type: exec
name: packer-ubuntu
2022-03-06 20:36:39 +00:00
platform:
os: linux
arch: amd64
steps:
- name: ubuntu
commands:
- packer build ubuntu/ubuntu-20.04-amd64.json
2022-03-06 21:21:45 +00:00
- 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
name: packer-debian
platform:
os: linux
arch: amd64
steps:
- name: debian
commands:
2022-03-06 21:21:45 +00:00
- 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