-
Notifications
You must be signed in to change notification settings - Fork 84
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] setup publishing bot for containerd #310
Conversation
Skipping CI for Draft Pull Request. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: akhilerm The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
- install git-filter-repo - update base image to bullseye for installing filter-repo via backports - change master to main - add support for multiple directories - change filter branch with filter repo - enable support for branches with "/" in branch name Signed-off-by: Akhil Mohan <[email protected]>
4eebe09
to
b60bbb4
Compare
FROM debian:stretch | ||
FROM debian:bullseye | ||
MAINTAINER Stefan Schimanski <[email protected]> | ||
RUN echo deb http://deb.debian.org/debian bullseye-backports main >> /etc/apt/sources.list | ||
RUN apt-get update \ | ||
&& apt-get install -y -qq git=1:2.11.0-3+deb9u7 \ | ||
&& apt-get install -y -qq git \ | ||
&& apt-get install -y -qq mercurial \ | ||
&& apt-get install -y -qq ca-certificates curl wget jq vim tmux bsdmainutils tig gcc zip \ | ||
&& apt-get install -y -qq ca-certificates curl wget jq vim tmux bsdmainutils tig gcc zip git-filter-repo/bullseye-backports \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These changes should be in a separate commit.
Also, there might be some history as to why git is pinned to that version. That needs to be investigated before unpinning the version.
--push-script ${PUSH_SCRIPT} \ | ||
--push-script ${PUSH_SCRIPT} \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unintended indentation change?
@@ -45,9 +45,9 @@ fi | |||
# the target repo | |||
REPO="${1}" | |||
# src branch of k8s.io/kubernetes | |||
SRC_BRANCH="${2:-master}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Kubernetes still uses master
so we'll need to be able to configure this
This PR will be split into multiple small changes so that it can be merged into the master branch. The list of changes include
|
Signed-off-by: Akhil Mohan <[email protected]>
PR needs rebase. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
The Kubernetes project currently lacks enough contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle stale |
The Kubernetes project currently lacks enough active contributors to adequately respond to all PRs. This bot triages PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
/close |
@akhilerm: Closed this PR. In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Signed-off-by: Akhil Mohan [email protected]
EDIT: This PR will be split into multiple small changes so that it can be merged into the master branch.