drone-yaml/yaml/pretty/testdata/pipeline_resources.yml.golden

23 lines
244 B
Plaintext
Raw Normal View History

2019-01-23 00:44:17 +01:00
---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: build
image: golang
commands:
- go build
resources:
limits:
2019-03-18 04:03:27 +01:00
cpu: 2
2019-01-23 00:44:17 +01:00
memory: 100MiB
requests:
2019-03-18 04:03:27 +01:00
cpu: 1
2019-01-23 00:44:17 +01:00
memory: 50MiB
...