Skip to content

Commit

Permalink
update priority description
Browse files Browse the repository at this point in the history
  • Loading branch information
dixudx committed Sep 4, 2021
1 parent 4231f9c commit 632b358
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions apps/v1alpha1/globalization.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,10 @@ type GlobalizationSpec struct {
// +optional
Overrides []OverrideConfig `json:"overrides,omitempty"`

// Priority is an integer defining the relative importance of this Globalization compared to others. Lower
// numbers are considered lower priority.
// Priority is an integer defining the relative importance of this Globalization compared to others.
// Lower numbers are considered lower priority.
// And these Globalization(s) will be applied by order from lower priority to higher.
// That means override values in lower Globalization will be overridden by those in higher Globalization.
//
// +optional
// +kubebuilder:validation:Maximum=1000
Expand Down
6 changes: 4 additions & 2 deletions apps/v1alpha1/localization.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ type LocalizationSpec struct {
// +optional
Overrides []OverrideConfig `json:"overrides,omitempty"`

// Priority is an integer defining the relative importance of this Localization compared to others. Lower
// numbers are considered lower priority.
// Priority is an integer defining the relative importance of this Localization compared to others.
// Lower numbers are considered lower priority.
// And these Localization(s) will be applied by order from lower priority to higher.
// That means override values in lower Localization will be overridden by those in higher Localization.
//
// +optional
// +kubebuilder:validation:Maximum=1000
Expand Down

0 comments on commit 632b358

Please sign in to comment.