-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update example config with inline documentation (#545)
Signed-off-by: Ettore Di Giacinto <edigiacinto@suse.com>
- Loading branch information
Showing
1 changed file
with
15 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,17 @@ | ||
# cOS configuration file | ||
# This file allows to tweak cOS configuration such as: default upgrade/recovery image and GRUB menu entry | ||
|
||
# Disable/enable image verification during upgrades ( default: true ) | ||
VERIFY=false | ||
UPGRADE_IMAGE="quay.io/mudler/cos-test:cos-standard" | ||
|
||
# Disable/enable upgrades via release channels instead of container images. ( default: true ) | ||
CHANNEL_UPGRADES=false | ||
RECOVERY_IMAGE="quay.io/mudler/cos-test:cos-standard" | ||
|
||
# Default container image used for upgrades. ( defaults to system/cos with channel CHANNEL_UPGRADES enabled ) | ||
UPGRADE_IMAGE="quay.io/mudler/cos-test:cos-standard" | ||
|
||
# Default recovery image to use when upgrading the recovery partition. ( defaults to system/cos with channel CHANNEL_UPGRADES enabled ) | ||
RECOVERY_IMAGE="quay.io/mudler/cos-test:cos-standard" | ||
|
||
# GRUB entry to display on boot. ( defaults: cOS ) | ||
GRUB_ENTRY_NAME="example" |