kubermemes/drone/types/pipeline.dhall

20 lines
416 B
Plaintext
Raw Normal View History

2020-01-23 20:50:23 +00:00
let Volume = ./volume.dhall
let Step = ./step.dhall
in { Type =
{ kind : Text
, name : Text
, type : Text
, steps : List Step.Type
, volumes : Optional (List Volume.Type)
}
, default =
{ kind = "pipeline"
, type = "docker"
, name = "test"
, steps = [] : List Step.Type
, volumes = None (List Volume.Type)
}
}