Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@thanos1983
Copy link
Contributor

…t on how to deploy metrics without the need to download the repo.

Signed-off-by: Athanasios Garyfalos [email protected]

What type of PR is this?

What this PR does / why we need it:

Which issue(s) this PR fixes:

Special notes for your reviewer:

Does this PR introduce a user-facing change?


…t on how to deploy metrics without the need to download the repo.

Signed-off-by: Athanasios Garyfalos <[email protected]>
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Oct 22, 2021

@thanos1983: Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it.

Details

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.

@openshift-ci openshift-ci bot added dco-signoff: yes Indicates the PR's author has DCO signed all their commits. do-not-merge/release-note-label-needed Indicates that a PR should not merge because it's missing one of the release note labels. labels Oct 22, 2021
@openshift-ci openshift-ci bot requested a review from umohnani8 October 22, 2021 17:03
@openshift-ci openshift-ci bot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Oct 22, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Oct 22, 2021

Hi @thanos1983. Thanks for your PR.

I'm waiting for a cri-o member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

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.

@thanos1983
Copy link
Contributor Author

@haircommander thanks a lot @haircommander.

I hope this time I got it straight :)

Have a nice weekend.

BR / Thanos

@codecov
Copy link

codecov bot commented Oct 22, 2021

Codecov Report

Merging #5420 (038547b) into main (35d1be8) will decrease coverage by 0.28%.
The diff coverage is 48.82%.

@@            Coverage Diff             @@
##             main    #5420      +/-   ##
==========================================
- Coverage   43.78%   43.50%   -0.29%     
==========================================
  Files         118      118              
  Lines       11721    11829     +108     
==========================================
+ Hits         5132     5146      +14     
- Misses       6102     6191      +89     
- Partials      487      492       +5     

Copy link
Member

@saschagrunert saschagrunert left a comment

Choose a reason for hiding this comment

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

/ok-to-test

LGTM

@openshift-ci openshift-ci bot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Oct 25, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Oct 25, 2021

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: saschagrunert, thanos1983

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Oct 25, 2021
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/Release.key | gpg --dearmor -o /usr/share/keyrings/libcontainers-archive-keyring.gpg
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$VERSION/$OS/Release.key | gpg --dearmor -o /usr/share/keyrings/libcontainers-crio-archive-keyring.gpg

apt-get update
Copy link
Member

Choose a reason for hiding this comment

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

shoot I think we still need this.

can you add it back, commit the changes, and squash the commits together with
git rebase -i upstream/main and then change the pick of the second line to s and quit the editor? then force push the branch

sudo dnf module enable cri-o:$VERSION
sudo dnf install cri-o
dnf module enable cri-o:$VERSION
dnf install -y cri-o
Copy link
Contributor

Choose a reason for hiding this comment

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

I personally like having the -y in the docs, but I have received a lot of negative feedback in the past from people who have security or disk space concerns with it.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I personally like having the -y in the docs, but I have received a lot of negative feedback in the past from people who have security or disk space concerns with it.

I will agree with @TomSweeneyRedHat. Removing -y and adding apt upgrade. On my case simple apt update does not work.

I hope now is okay :) @haircommander to verify :)

@TomSweeneyRedHat
Copy link
Contributor

LGTM once @haircommander 's comment is settled.

Athanasios Garyfalos added 2 commits October 26, 2021 11:31
…t on how to deploy metrics without the need to download the repo.

Signed-off-by: Athanasios Garyfalos <[email protected]>
…368-adding-docs

Signed-off-by: Athanasios Garyfalos <[email protected]>
curl -L -o /etc/yum.repos.d/devel:kubic:libcontainers:stable.repo https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/devel:kubic:libcontainers:stable.repo
curl -L -o /etc/yum.repos.d/devel:kubic:libcontainers:stable:cri-o:$VERSION.repo https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:$VERSION/$OS/devel:kubic:libcontainers:stable:cri-o:$VERSION.repo
yum install cri-o
yum install -y cri-o
Copy link
Member

Choose a reason for hiding this comment

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

one more nit: if we drop the other -ys, then we should drop this one as well

Copy link
Contributor Author

Choose a reason for hiding this comment

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

one more nit: if we drop the other -ys, then we should drop this one as well

@haircommander I missed this, thanks for noticing :)

Athanasios Garyfalos added 2 commits October 27, 2021 10:11
…t on how to deploy metrics without the need to download the repo.

Signed-off-by: Athanasios Garyfalos <[email protected]>
@openshift-ci openshift-ci bot added dco-signoff: no Indicates the PR's author has not DCO signed all their commits. and removed dco-signoff: yes Indicates the PR's author has DCO signed all their commits. labels Oct 27, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented Oct 27, 2021

Thanks for your pull request. Before we can look at it, you'll need to add a 'DCO signoff' to your commits.

📝 Please follow instructions in the contributing guide to update your commits with the DCO

Full details of the Developer Certificate of Origin can be found at developercertificate.org.

The list of commits missing DCO signoff:

  • 038547b Merge branch '5368-adding-docs' of github.com:thanos1983/cri-o into 5368-adding-docs
Details

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. I understand the commands that are listed here.

@thanos1983
Copy link
Contributor Author

/retest

@thanos1983
Copy link
Contributor Author

@haircommander follow up?

@thanos1983
Copy link
Contributor Author

/retest

@openshift-ci-robot
Copy link

@thanos1983: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/kata-jenkins 038547b link true /test kata-containers
Details

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. I understand the commands that are listed here.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented Nov 15, 2021

@thanos1983: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/kata-jenkins 038547b link true /test kata-containers
ci/openshift-jenkins/integration_crun_cgroupv2 038547b link false /test integration_cgroupv2
ci/openshift-jenkins/e2e_crun_cgroupv2 038547b link false /test e2e_cgroupv2

Full PR test history. Your PR dashboard.

Details

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. I understand the commands that are listed here.

@haircommander
Copy link
Member

sorry @thanos1983 we can't merge it with all of the merge commits in therre. have you tried using git rebase to remove/squash them?

@thanos1983 thanos1983 closed this Dec 14, 2021
@thanos1983 thanos1983 deleted the 5368-adding-docs branch December 14, 2021 11:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. dco-signoff: no Indicates the PR's author has not DCO signed all their commits. do-not-merge/release-note-label-needed Indicates that a PR should not merge because it's missing one of the release note labels. ok-to-test Indicates a non-member PR verified by an org member that is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants