forked from coreos/ignition
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stages/disks: retry
sgdisk --zap-all
invocation
When `wipeTable` is enabled, we run `sgdisk --zap-all`. But if the table was corrupted in the first place, `sgdisk` will exit with code 2 which then breaks boot. As a workaround, Ignition used to retry the invocation but the context around it was lost in coreos#544 and coreos#1149 and the retry was removed and the error-checking was added. So this patch effectively re-applies 94c98bc ("sgdisk: retry zap-all operation on failure"), but now with a comment and a test to make sure we don't regress again. Closes: coreos/fedora-coreos-tracker#1596
- Loading branch information
Showing
5 changed files
with
90 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
// Copyright 2023 CoreOS, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package partitions | ||
|
||
import ( | ||
"github.com/coreos/ignition/v2/tests/register" | ||
"github.com/coreos/ignition/v2/tests/types" | ||
) | ||
|
||
func init() { | ||
// Tests that wipe tables | ||
register.Register(register.PositiveTest, WipeBadTable()) | ||
} | ||
|
||
func WipeBadTable() types.Test { | ||
name := "partition.wipebadtable" | ||
in := append(types.GetBaseDisk(), types.Disk{ | ||
Alignment: types.IgnitionAlignment, | ||
Partitions: types.Partitions{ | ||
{ | ||
Label: "deleteme", | ||
Number: 1, | ||
Length: 65536, | ||
}, | ||
}, | ||
CorruptTable: true, | ||
}) | ||
out := append(types.GetBaseDisk(), types.Disk{Alignment: types.IgnitionAlignment}) | ||
config := `{ | ||
"ignition": { | ||
"version": "$version" | ||
}, | ||
"storage": { | ||
"disks": [ | ||
{ | ||
"device": "$disk1", | ||
"wipeTable": true | ||
} | ||
] | ||
} | ||
}` | ||
configMinVersion := "3.0.0" | ||
|
||
return types.Test{ | ||
Name: name, | ||
In: in, | ||
Out: out, | ||
Config: config, | ||
ConfigMinVersion: configMinVersion, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters