File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
3434type PodNamingPolicy string
3535
3636const (
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)
You can’t perform that action at this time.
0 commit comments