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

Bug 1961942: use /disk/by-id name as symlink name #235

Merged
merged 1 commit into from May 26, 2021

Conversation

sp98
Copy link
Contributor

@sp98 sp98 commented May 17, 2021

If the device provided in the devicePaths list in the localVolume CR has /dev/disk/by-id, then use the id name to create symlink in /mnt/local-storage/<storageClassName> directory.

Signed-off-by: Santosh Pillai sapillai@redhat.com
(cherry picked from commit 7b64dc2)

Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1955862

Tests:

  1. Localvolume CR
  storageClassDevices:
    - storageClassName: "test"
      volumeMode: Filesystem
      fsType: ext4
      devicePaths:
        - /dev/sdb
        - /dev/sdc
        - /dev/sdd
  1. /dev/sdd has no diskID, where as , /dev/sdb and /dev/sdc have diskID in /dev/disk/by-id
$ ls -lR /dev/disk

/dev/disk/by-id:
total 0
lrwxrwxrwx 1 root root  9 May 17 06:54 ata-VBOX_CD-ROM_VB0-1a2b3c4d__ -> ../../sr0
lrwxrwxrwx 1 root root  9 May 17 06:55 ata-VBOX_HARDDISK_____VB3ec86ebf-ed3a5a93 -> ../../sdb
lrwxrwxrwx 1 root root  9 May 17 06:54 ata-VBOX_HARDDISK_____VBc80535a7-0f341983 -> ../../sda
lrwxrwxrwx 1 root root 10 May 17 06:54 ata-VBOX_HARDDISK_____VBc80535a7-0f341983-part1 -> ../../sda1
lrwxrwxrwx 1 root root  9 May 17 06:59 ata-VBOX_HARDDISK_____VBd77b4088-cdd82838 -> ../../sd
  1. Observe that /dev/sdb and /dev/sdc symlinks are created via their /dev/disk/by-id and with the same name.
    Where as /dev/sdd symlink is created with name sdd
$ ls /mnt/local-storage/test/
ata-VBOX_HARDDISK_____VB3ec86ebf-ed3a5a93  ata-VBOX_HARDDISK_____VBd77b4088-cdd82838  sdd
$ 
$ ls -lR /mnt/local-storage/test/
/mnt/local-storage/test/:
total 0
lrwxrwxrwx 1 root root 57 May 17 07:03 ata-VBOX_HARDDISK_____VB3ec86ebf-ed3a5a93 -> /dev/disk/by-id/ata-VBOX_HARDDISK_____VB3ec86ebf-ed3a5a93
lrwxrwxrwx 1 root root 57 May 17 07:03 ata-VBOX_HARDDISK_____VBd77b4088-cdd82838 -> /dev/disk/by-id/ata-VBOX_HARDDISK_____VBd77b4088-cdd82838
lrwxrwxrwx 1 root root  8 May 17 07:03 sdd -> /dev/sdd
$ 

Upgrade Tests

  1. Before upgrade:
  • have following disks
    /sdb -- has disk/id -- ata-VBOX_HARDDISK_____VB3ec86ebf-ed3a5a93
    /sdc -- no dev disk by id

  • localvolume CR:

  storageClassDevices:
    - storageClassName: "test"
      volumeMode: Filesystem
      fsType: ext4
      devicePaths:
        - /dev/sdb
        - /dev/sdc
        #- /dev/sdd
  • Symlinks created:
$ cd /mnt/local-storage/test/
$ ls
sdb  sdc
  • PVs created:
Every 2.0s: oc get pv                                                  localhost.localdomain: Wed May 19 11:01:48 2021

NAME                CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      CLAIM   STORAGECLASS   REASON   AGE
local-pv-a36f27f9   8Gi        RWO            Delete           Available           test                    11m
local-pv-d00d358a   10Gi       RWO            Delete           Available           test                    11m

  1. After upgrading:
  • added a new disk(sdd) with /dev/disk/by-id

  • added the disk in the local volume CR and applied it.

    storageClassDevices:
    - storageClassName: "test"
      volumeMode: Filesystem
      fsType: ext4
      devicePaths:
        - /dev/sdb
        - /dev/sdc
        - /dev/sdd
  • Only one new symlink was created for /dev/sdd. This symlink was based on ID. New symlinks were not created for /sda and /sdc
$ ls /mnt/local-storage/test/
ata-VBOX_HARDDISK_____VB6c3ba355-dac989e6  sdb	sdc
$ 
  • One new PV was created:
Every 2.0s: oc get pv                                                  localhost.localdomain: Wed May 19 11:05:23 2021

NAME                CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      CLAIM   STORAGECLASS   REASON   AGE
local-pv-a36f27f9   8Gi        RWO            Delete           Available           test                    15m
local-pv-d00d358a   10Gi       RWO            Delete           Available           test                    15m
local-pv-dad1b103   10Gi       RWO            Delete           Available           test                    2m1s

Signed-off-by: Santosh Pillai <sapillai@redhat.com>
(cherry picked from commit 7b64dc2)
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 17, 2021

@sp98: No Bugzilla bug is referenced in the title of this pull request.
To reference a bug, add 'Bug XXX:' to the title of this pull request and request another bug refresh with /bugzilla refresh.

In response to this:

use /disk/by-id name as symlink name

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 requested review from gnufied and huffmanca May 17, 2021 05:44
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 17, 2021

@sp98: No Bugzilla bug is referenced in the title of this pull request.
To reference a bug, add 'Bug XXX:' to the title of this pull request and request another bug refresh with /bugzilla refresh.

In response to this:

use /disk/by-id name as symlink name

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.

1 similar comment
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 17, 2021

@sp98: No Bugzilla bug is referenced in the title of this pull request.
To reference a bug, add 'Bug XXX:' to the title of this pull request and request another bug refresh with /bugzilla refresh.

In response to this:

use /disk/by-id name as symlink name

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
Copy link
Contributor

openshift-ci bot commented May 17, 2021

@sp98: No Bugzilla bug is referenced in the title of this pull request.
To reference a bug, add 'Bug XXX:' to the title of this pull request and request another bug refresh with /bugzilla refresh.

In response to this:

[WIP]use /disk/by-id name as symlink name

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.

@sp98 sp98 changed the title use /disk/by-id name as symlink name [WIP]use /disk/by-id name as symlink name May 17, 2021
@openshift-ci openshift-ci bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label May 17, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 17, 2021

@sp98: No Bugzilla bug is referenced in the title of this pull request.
To reference a bug, add 'Bug XXX:' to the title of this pull request and request another bug refresh with /bugzilla refresh.

In response to this:

[WIP]use /disk/by-id name as symlink name

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.

@sp98 sp98 changed the title [WIP]use /disk/by-id name as symlink name use /disk/by-id name as symlink name May 17, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 17, 2021

@sp98: No Bugzilla bug is referenced in the title of this pull request.
To reference a bug, add 'Bug XXX:' to the title of this pull request and request another bug refresh with /bugzilla refresh.

In response to this:

use /disk/by-id name as symlink name

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 removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label May 17, 2021
@sp98 sp98 changed the title use /disk/by-id name as symlink name Bug 1955862: use /disk/by-id name as symlink name May 17, 2021
@openshift-ci openshift-ci bot added bugzilla/severity-high Referenced Bugzilla bug's severity is high for the branch this PR is targeting. bugzilla/invalid-bug Indicates that a referenced Bugzilla bug is invalid for the branch this PR is targeting. labels May 17, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 17, 2021

@sp98: This pull request references Bugzilla bug 1955862, which is invalid:

  • expected the bug to target the "4.6.z" release, but it targets "---" instead
  • expected Bugzilla bug 1955862 to depend on a bug targeting a release in 4.7.0, 4.7.z and in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but no dependents were found

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

Bug 1955862: use /disk/by-id name as symlink name

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.

Comment on lines +132 to +133
symLinkSource = deviceNameLocation.diskID
symLinkTarget = getSymlinkTarget(deviceNameLocation.diskID, symLinkDirPath)
Copy link
Contributor

Choose a reason for hiding this comment

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

What happens when someone updates to a new LSO version with symlinks already present from the old LSO? Looking at the code, does it create new symlinks, ignoring the old ones? What happens to already existing PVs?

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 don't think new symlinks will be created. Old ones will still be used. We are checking for existing symlinks in line 155 below.

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've tested this scenario. Updated the results in the PR description. Looks good.

@jsafrane
Copy link
Contributor

jsafrane commented May 18, 2021

/lgtm

However, you need to sort out the Bugzilla bureaucracy:

  • Is there a corresponding 4.7 BZ? If so, make BZ 1955862 depend on it + set target release of 1955862 to 4.6.z.
  • If there is no 4.7 BZ, then it becomes tedious:
    • Set target release of 1955862 to 4.8 & mark it ON_QA (the bug is already fixed there, right?). QA will mark it VERIFIED.
    • Clone 1955862 and set target-release of the clone to 4.7.z & mark it ON_QA (it's already fixed there too). QA will mark it VERIFIED.
    • Clone the clone (!) and set target-release of the cloned clone to 4.6.z & update this PR title to this BZ.

All this BZ dance makes sure we don't introduce regression along the upgrade path.

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label May 18, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 18, 2021

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: jsafrane, sp98

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

The pull request process is described here

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 May 18, 2021
@openshift-bot
Copy link
Contributor

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 19, 2021

@openshift-bot: This pull request references Bugzilla bug 1955862, which is invalid:

  • expected the bug to target the "4.6.z" release, but it targets "---" instead
  • expected Bugzilla bug 1955862 to depend on a bug targeting a release in 4.7.0, 4.7.z and in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but no dependents were found

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

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
Copy link
Contributor

openshift-ci bot commented May 19, 2021

@sp98: This pull request references Bugzilla bug 1955862, which is invalid:

  • expected the bug to target the "4.6.z" release, but it targets "---" instead
  • expected Bugzilla bug 1955862 to depend on a bug targeting a release in 4.7.0, 4.7.z and in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but no dependents were found

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

Bug 1955862: use /disk/by-id name as symlink name

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.

1 similar comment
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 19, 2021

@sp98: This pull request references Bugzilla bug 1955862, which is invalid:

  • expected the bug to target the "4.6.z" release, but it targets "---" instead
  • expected Bugzilla bug 1955862 to depend on a bug targeting a release in 4.7.0, 4.7.z and in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but no dependents were found

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

Bug 1955862: use /disk/by-id name as symlink name

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.

@sp98
Copy link
Contributor Author

sp98 commented May 19, 2021

/lgtm

However, you need to sort out the Bugzilla bureaucracy:

  • Is there a corresponding 4.7 BZ? If so, make BZ 1955862 depend on it + set target release of 1955862 to 4.6.z.
  • If there is no 4.7 BZ, then it becomes tedious:

There is no 4.7 BZ

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 19, 2021

@sp98: This pull request references Bugzilla bug 1955862, which is invalid:

  • expected the bug to target the "4.6.z" release, but it targets "---" instead
  • expected Bugzilla bug 1955862 to depend on a bug targeting a release in 4.7.0, 4.7.z and in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but no dependents were found

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

Bug 1955862: use /disk/by-id name as symlink name

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.

@sp98 sp98 changed the title Bug 1955862: use /disk/by-id name as symlink name Bug 1961942: use /disk/by-id name as symlink name May 19, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 19, 2021

@sp98: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1961941 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is NEW instead
  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

Bug 1961942: use /disk/by-id name as symlink name

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.

@sp98
Copy link
Contributor Author

sp98 commented May 19, 2021

  • Set target release of 1955862 to 4.8 & mark it ON_QA (the bug is already fixed there, right?). QA will mark it VERIFIED.

done

  • Clone 1955862 and set target-release of the clone to 4.7.z & mark it ON_QA (it's already fixed there too). QA will mark it VERIFIED.

https://bugzilla.redhat.com/show_bug.cgi?id=1961941

  • Clone the clone (!) and set target-release of the cloned clone to 4.6.z & update this PR title to this BZ.

https://bugzilla.redhat.com/show_bug.cgi?id=1961942

All this BZ dance makes sure we don't introduce regression along the upgrade path.

@openshift-bot
Copy link
Contributor

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 20, 2021

@openshift-bot: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1961941 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

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-bot
Copy link
Contributor

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 21, 2021

@openshift-bot: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1961941 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

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-bot
Copy link
Contributor

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 22, 2021

@openshift-bot: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1961941 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

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-bot
Copy link
Contributor

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 23, 2021

@openshift-bot: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1961941 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

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-bot
Copy link
Contributor

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 24, 2021

@openshift-bot: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1961941 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

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-bot
Copy link
Contributor

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

@openshift-ci openshift-ci bot removed the bugzilla/severity-high Referenced Bugzilla bug's severity is high for the branch this PR is targeting. label May 25, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 25, 2021

@openshift-bot: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to be in one of the following states: VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE), but it is ON_QA instead
  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

Recalculating validity in case the underlying Bugzilla bug has changed.

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 the bugzilla/severity-urgent Referenced Bugzilla bug's severity is urgent for the branch this PR is targeting. label May 25, 2021
@jsafrane
Copy link
Contributor

/bugzilla refresh

@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 25, 2021

@jsafrane: This pull request references Bugzilla bug 1961942, which is invalid:

  • expected dependent Bugzilla bug 1955862 to target a release in 4.7.0, 4.7.z, but it targets "4.8.0" instead

Comment /bugzilla refresh to re-evaluate validity if changes to the Bugzilla bug are made, or edit the title of this pull request to link to a different bug.

In response to this:

/bugzilla refresh

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.

@jsafrane
Copy link
Contributor

/bugzilla refresh

@openshift-ci openshift-ci bot added the bugzilla/valid-bug Indicates that a referenced Bugzilla bug is valid for the branch this PR is targeting. label May 25, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 25, 2021

@jsafrane: This pull request references Bugzilla bug 1961942, which is valid.

6 validation(s) were run on this bug
  • bug is open, matching expected state (open)
  • bug target release (4.6.z) matches configured target release for branch (4.6.z)
  • bug is in the state POST, which is one of the valid states (NEW, ASSIGNED, ON_DEV, POST, POST)
  • dependent bug Bugzilla bug 1961941 is in the state VERIFIED, which is one of the valid states (VERIFIED, RELEASE_PENDING, CLOSED (ERRATA), CLOSED (CURRENTRELEASE))
  • dependent Bugzilla bug 1961941 targets the "4.7.z" release, which is one of the valid target releases: 4.7.0, 4.7.z
  • bug has dependents

Requesting review from QA contact:
/cc @chao007

In response to this:

/bugzilla refresh

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 removed the bugzilla/invalid-bug Indicates that a referenced Bugzilla bug is invalid for the branch this PR is targeting. label May 25, 2021
@openshift-ci openshift-ci bot requested a review from chao007 May 25, 2021 09:15
@sdodson sdodson added the cherry-pick-approved Indicates a cherry-pick PR into a release branch has been approved by the release branch manager. label May 26, 2021
@openshift-merge-robot openshift-merge-robot merged commit fa3468d into openshift:release-4.6 May 26, 2021
@openshift-ci
Copy link
Contributor

openshift-ci bot commented May 26, 2021

@sp98: All pull requests linked via external trackers have merged:

Bugzilla bug 1961942 has been moved to the MODIFIED state.

In response to this:

Bug 1961942: use /disk/by-id name as symlink name

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.

@humblec
Copy link

humblec commented May 27, 2021

@sp98 does this have any side effects on detecting the same device after node reboot? considering the sd* names could change and the disks are not identified by the ID, there could be an issue after reboot and other device named as sdd in this case. Isnt it ?

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. bugzilla/severity-urgent Referenced Bugzilla bug's severity is urgent for the branch this PR is targeting. bugzilla/valid-bug Indicates that a referenced Bugzilla bug is valid for the branch this PR is targeting. cherry-pick-approved Indicates a cherry-pick PR into a release branch has been approved by the release branch manager. lgtm Indicates that a PR is ready to be merged.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants