name-maxlength
This commit is contained in:
parent
f212ab7891
commit
6ae3eee981
|
|
@ -75,7 +75,7 @@ spec:
|
|||
properties:
|
||||
name:
|
||||
type: string
|
||||
maxLength: 50
|
||||
maxLength: 53
|
||||
spec:
|
||||
type: object
|
||||
required:
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ Note, that the name of the cluster must start with the `teamId` and `-`. At
|
|||
Zalando we use team IDs (nicknames) to lower the chance of duplicate cluster
|
||||
names and colliding entities. The team ID would also be used to query an API to
|
||||
get all members of a team and create [database roles](#teams-api-roles) for
|
||||
them.
|
||||
them. Besides, the maximum cluster name length is 53 characters.
|
||||
|
||||
## Watch pods being created
|
||||
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ spec:
|
|||
properties:
|
||||
name:
|
||||
type: string
|
||||
maxLength: 50
|
||||
maxLength: 53
|
||||
spec:
|
||||
type: object
|
||||
required:
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ var min0 = 0.0
|
|||
var min1 = 1.0
|
||||
var min2 = 2.0
|
||||
var minDisable = -1.0
|
||||
var maxLength = int64(50)
|
||||
var maxLength = int64(53)
|
||||
|
||||
// PostgresCRDResourceValidation to check applied manifest parameters
|
||||
var PostgresCRDResourceValidation = apiextv1beta1.CustomResourceValidation{
|
||||
|
|
|
|||
Loading…
Reference in New Issue