Skip to content

Commit

Permalink
Fixes #3281 remove alpha from preset config option help
Browse files Browse the repository at this point in the history
this was missed and as preset feature has been working for users
for many releases now we can remove the alpha feature tag
  • Loading branch information
anjannath authored and praveenkumar committed Sep 8, 2022
1 parent 24ce8bb commit ce8fb7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/crc/config/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func RegisterSettings(cfg *Config) {

// Preset setting should be on top because CPUs/Memory config depend on it.
cfg.AddSetting(Preset, string(preset.OpenShift), validatePreset, RequiresDeleteAndSetupMsg,
fmt.Sprintf("Virtual machine preset (alpha feature - valid values are: %s, %s and %s)", preset.Podman, preset.OpenShift, preset.OKD))
fmt.Sprintf("Virtual machine preset (valid values are: %s, %s and %s)", preset.Podman, preset.OpenShift, preset.OKD))
// Start command settings in config
cfg.AddSetting(Bundle, defaultBundlePath(cfg), validateBundlePath, SuccessfullyApplied,
fmt.Sprintf("Bundle path (string, default '%s')", defaultBundlePath(cfg)))
Expand Down

0 comments on commit ce8fb7a

Please sign in to comment.