Skip to content

Commit d8b5a37

Browse files
committed
refactor suffix
1 parent 98394d2 commit d8b5a37

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

apps/v1alpha1/collaset_types.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ const (
3030

3131
// PodNamingPolicy is a string enumeration that determaines how pod name will be generated.
3232
// A collaset pod name contains two parts to be placed in a string formation %s-%s; the prefix
33-
// is name of collaset, and the postfix is determined by PodNamingPolicy.
33+
// is name of collaset, and the suffix is determined by PodNamingPolicy.
3434
type PodNamingPolicy string
3535

3636
const (
37-
// PodNamingPolicyPersistentSequence uses persistent sequential numbers as pod name postfix.
37+
// PodNamingPolicyPersistentSequence uses persistent sequential numbers as pod name suffix.
3838
PodNamingPolicyPersistentSequence PodNamingPolicy = "PersistentSequence"
39-
// PodNamingPolicyDefault uses random strings which are provided by Kubernetes as pod name postfix.
39+
// PodNamingPolicyDefault uses random strings which are provided by Kubernetes as pod name suffix.
4040
// This is defaulting value.
4141
PodNamingPolicyDefault PodNamingPolicy = "Default"
4242
)

0 commit comments

Comments
 (0)