oci-layout-path - expected to generate tar file in application/vnd.oci.image.manifest.v1+json but not generated as expected
I tried to run below command to get OCI tar file in format/manifest in application/vnd.oci.image.manifest.v1+json
but got generated application/vnd.docker.distribution.manifest.v2+json
As per OCI spec - https://github.com/opencontainers/image-spec/blob/master/manifest.md , we expect to get generated tar file in application/vnd.oci.image.manifest.v1+json
docker run
-v /home/sterio/test:/test
gcr.io/kaniko-project/executor:latest
--dockerfile /test/Dockerfile
--destination image
--oci-layout-path /test/ociTarDir
--no-push
--tarPath /test/test1234.tar
did I miss anything to get expected format/manifest application/vnd.oci.image.manifest.v1+json ?
Any news on this subject ?