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

Add repo tool to images #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

moto-timo
Copy link
Member

The google repo tool helps manage projects with multiple git repos.
Some use it for yocto.

Closes: #22

Signed-off-by: Cormier, Jonathan jcormier@criticallink.com

Used by AGL and multiple teams internally.

Signed-off-by: Tim Orling timothy.t.orling@linux.intel.com

The google repo tool helps manage projects with multiple git repos.
Some use it for yocto.

Closes: crops#22

Signed-off-by: Cormier, Jonathan <jcormier@criticallink.com>

Used by AGL and multiple teams internally.

Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
@moto-timo
Copy link
Member Author

I'll rebase if you merge git-lfs first.

Copy link
Contributor

@rewitt1 rewitt1 left a comment

Choose a reason for hiding this comment

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

I added some comments/feedback.

But, I'm still uncertain of adding this to the image, because none of the core metadata ever uses repo.(has that changed?) If repo is needed to fetch the source, and repo isn't desired on the host, could another image instead be used for the fetching?

I ask because there has to be "some" guidance for what helpful tools should be added into the container.


# repo-test
#
# Copyright (C) 2016 Intel Corporation
Copy link
Contributor

Choose a reason for hiding this comment

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

Year should probably be updated.

@@ -56,6 +56,9 @@ RUN yum -y install epel-release && \
mkdir /etc/vncskel/.vnc && \
echo "" | vncpasswd -f > /etc/vncskel/.vnc/passwd && \
chmod 0600 /etc/vncskel/.vnc/passwd && \
# Repo is a useful tool for checking out multiple git repos
wget https://storage.googleapis.com/git-repo-downloads/repo -O /usr/local/bin/repo && \
Copy link
Contributor

Choose a reason for hiding this comment

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

Since this isn't coming from the package manager and thus doesn't do verification automatically, it should at least do a checksum comparison against an expected version.

Copy link
Member

Choose a reason for hiding this comment

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

@rewitt1 @moto-timo: repo is a tool I want to be able to use in crops containers so taking a look at this. The issue is that the URL https://storage.googleapis.com/git-repo-downloads/repo gets you the latest release of repo and so we can't expect it to match any given checksum for long. repo really doesn't support running anything other than the very latest commit, it actually pulls the latest commit from its own git repository when you run it. Sadly it's a widely used tool and we do need to try to support it.

The https cert for storage.goolgeapis.com will be checked as part of this download so that should be safe.

Copy link
Member Author

@moto-timo moto-timo May 5, 2020

Choose a reason for hiding this comment

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

The source of most of this PR was from #22 including the Intel copyright (I don't think I did much modification of any of his work). I think #22 was just copy paste of existing scripts. We are currently installing repotool into the running container, so I have more or less stopped working on this. It is a frequent enough request to warrant further work. It would be great if you can pick this up @pbrkr


# Pass in the image that was built for docker
image=$1
workdir=`mktemp -d --suffix=vnc`
Copy link
Contributor

Choose a reason for hiding this comment

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

"vnc" looks like a copy-paste leftover.

@pbrkr
Copy link
Member

pbrkr commented May 4, 2020

@moto-timo: Any chance of getting this updated so it can be merged? If you're busy I can take over and make any necessary edits.

@moto-timo
Copy link
Member Author

Internally we went a different route to add "repo" and "git-lfs" via a derivative container model (which is in the process of being open sourced). We (and especially Randy, as the voice of MAINTAINER) have concerns about adding tools that are not generally usable to all. Containers are small, specialized and ephemeral. Derivative containers are viable. You should actually trust containers that YOU are building.

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.

Add repo tool to the image?
4 participants