engine/types: revert change based from @aluzzardi feedback
Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
This commit is contained in:
parent
c887cfa4e3
commit
4576b24f24
@ -7,7 +7,7 @@ package engine
|
|||||||
// - A directory containing binary artifacts
|
// - A directory containing binary artifacts
|
||||||
// Rule of thumb: if it fits in a tar archive, it fits in a #FS.
|
// Rule of thumb: if it fits in a tar archive, it fits in a #FS.
|
||||||
#FS: {
|
#FS: {
|
||||||
$dagger: fs: _id: !="" | null
|
$dagger: fs: _id: string | null
|
||||||
}
|
}
|
||||||
|
|
||||||
// A reference to an external secret, for example:
|
// A reference to an external secret, for example:
|
||||||
@ -17,7 +17,7 @@ package engine
|
|||||||
// Secrets are never merged in the Cue tree. They can only be used
|
// Secrets are never merged in the Cue tree. They can only be used
|
||||||
// by a special filesystem mount designed to minimize leak risk.
|
// by a special filesystem mount designed to minimize leak risk.
|
||||||
#Secret: {
|
#Secret: {
|
||||||
$dagger: secret: _id: !=""
|
$dagger: secret: _id: string
|
||||||
}
|
}
|
||||||
|
|
||||||
// A reference to a network service endpoint, for example:
|
// A reference to a network service endpoint, for example:
|
||||||
@ -25,5 +25,5 @@ package engine
|
|||||||
// - A unix or npipe socket
|
// - A unix or npipe socket
|
||||||
// - An HTTPS endpoint
|
// - An HTTPS endpoint
|
||||||
#Service: {
|
#Service: {
|
||||||
$dagger: service: _id: !=""
|
$dagger: service: _id: string
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user