mirror of
https://github.com/containers/podman.git
synced 2025-12-09 15:19:35 +08:00
Set default configuration container type annotation to sandbox
This allows podman to provide sufficient hints to start containers with Intel Clear Containers: https://github.com/clearcontainers/runtime/blob/master/docs/architecture/architecture.md#oci-annotations Signed-off-by: Naadir Jeewa <naadir@randomvariable.co.uk>
This commit is contained in:
@@ -23,6 +23,12 @@ func TestCreateConfig_GetVolumeMounts(t *testing.T) {
|
||||
assert.True(t, reflect.DeepEqual(data, specMount[0]))
|
||||
}
|
||||
|
||||
func TestCreateConfig_GetAnnotations(t *testing.T) {
|
||||
config := createConfig{}
|
||||
annotations := config.GetAnnotations()
|
||||
assert.True(t, reflect.DeepEqual("sandbox", annotations["io.kubernetes.cri-o.ContainerType"]))
|
||||
}
|
||||
|
||||
func TestCreateConfig_GetTmpfsMounts(t *testing.T) {
|
||||
data := spec.Mount{
|
||||
Destination: "/homer",
|
||||
|
||||
Reference in New Issue
Block a user