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

WIP Replace oci_distribution usage with containerd_client and k8_cri #99

Closed
wants to merge 17 commits into from

Conversation

Redent0r
Copy link

@Redent0r Redent0r commented Oct 17, 2023

This change updates the way genpolicy manages the container image and its layers.

Before, we would pull manifest and config, then pull each image layer individually using oci_distribuition client.

Now, we pull the image (all its layers) and config using k8_cri, then pull manifest, then query each layer using containerd_client.

This change:

Notable changes:

Test run: https://dev.azure.com/mariner-org/mariner/_build/results?buildId=462783&view=ms.vss-test-web.build-test-results-tab

Item: https://microsoft.visualstudio.com/OS/_workitems/edit/44971145

@Redent0r Redent0r force-pushed the saulparedes/use_containerd_client branch from 825358c to 4190aa4 Compare December 4, 2023 07:14
@Redent0r Redent0r force-pushed the saulparedes/use_containerd_client branch from 56d5743 to 46fc37f Compare December 4, 2023 17:39
@Redent0r Redent0r changed the title WIP replace oci_distribution with containerd_client WIP Replace oci_distribution usage with containerd_client and k8_cri Dec 4, 2023
use crate::policy;
use crate::verity;

use anyhow::{anyhow, Result};
use docker_credential::{CredentialRetrievalError, DockerCredential};
use containerd_client::services::v1::GetImageRequest;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does the new code work if containerd is not installed on the current machine?

Does it work on Windows too?

"Failed to pull container image manifest and config - error: {:#?}",
&e
);
return Err(anyhow!("Failed to connect to containerd: {e:?}"));

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just {e} should be good enough - similar to {ep} from https://github.com/microsoft/kata-containers/blob/8c6b54be51e9c074faace8a28e62d4113dfd6080/src/agent/src/policy.rs#L183C45-L183C45

For bonus points, you can also use bail! instead of Err(anyhow). This should work here:

use anyhow::{bail, Result};

bail!("Failed to connect to containerd: {e}");

.unwrap()
.connect_with_connector(service_fn(move |_: Uri| UnixStream::connect(socket.clone())))
.await
.expect("Could not create client.");

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we using expect or unwrap anywhere else in this code? If not, it might be better to use ? instead of expect.

use tokio::{fs, io::AsyncWriteExt};
use std::{io::Seek, io::Write, path::Path};
use tokio::{fs};
use k8s_cri::v1::image_service_client::ImageServiceClient;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does the new code work without having K8s set-up for the current machine?

Clean up and refactor.

Signed-off-by: Saul Paredes <saulparedes@microsoft.com>
@Redent0r Redent0r force-pushed the saulparedes/use_containerd_client branch from 5353c89 to 96ce904 Compare December 7, 2023 00:52
@Redent0r Redent0r closed this Apr 12, 2024
@Redent0r Redent0r deleted the saulparedes/use_containerd_client branch April 12, 2024 21:51
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

Successfully merging this pull request may close these issues.

None yet

2 participants