Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing support for anonymous volumes #29

Open
klutchell opened this issue Jun 1, 2023 · 0 comments
Open

Missing support for anonymous volumes #29

klutchell opened this issue Jun 1, 2023 · 0 comments

Comments

@klutchell
Copy link
Collaborator

The parser does not currently allow volumes without a source (anonymous volumes) even though the SV supports it at runtime.

case 'volume':
if (!serviceVolume.source) {
throw new ValidationError('Missing volume source');
}
if (volumeNames.indexOf(serviceVolume.source) === -1) {
throw new ValidationError(
`Missing volume definition for '${serviceVolume.source}'`,
);
}
if (serviceVolume.volume) {
throw new ValidationError('Volume options are not allowed');
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant