mirror of
https://github.com/containers/podman.git
synced 2025-08-24 10:04:57 +08:00

This adds `podman quadlet list`, `podman quadlet install`, `podman quadlet rm` and `podman quadlet print`. Signed-off-by: Matt Heon <mheon@redhat.com> Co-authored-by: flouthoc <flouthoc.git@gmail.com> Signed-off-by: flouthoc <flouthoc.git@gmail.com>
16 lines
280 B
Go
16 lines
280 B
Go
package quadlet
|
|
|
|
var (
|
|
// Key: Extension
|
|
// Value: Processing order for resource naming dependencies
|
|
SupportedExtensions = map[string]int{
|
|
".container": 4,
|
|
".volume": 2,
|
|
".kube": 4,
|
|
".network": 2,
|
|
".image": 1,
|
|
".build": 3,
|
|
".pod": 5,
|
|
}
|
|
)
|