mirror of
https://github.com/containers/podman.git
synced 2025-11-29 01:28:22 +08:00
RFE: Add artifact quadlet unit type #25778 Signed-off-by: Odilon Sousa <osousa@redhat.com>
17 lines
299 B
Go
17 lines
299 B
Go
package quadlet
|
|
|
|
var (
|
|
// Key: Extension
|
|
// Value: Processing order for resource naming dependencies
|
|
SupportedExtensions = map[string]int{
|
|
".artifact": 1,
|
|
".container": 4,
|
|
".volume": 2,
|
|
".kube": 4,
|
|
".network": 2,
|
|
".image": 1,
|
|
".build": 3,
|
|
".pod": 5,
|
|
}
|
|
)
|