@@ -114,13 +114,20 @@ <h3>Volume</h3>
114
114
115
115
< div class ="form-group ">
116
116
< label for ="volume-name "> Volume Name</ label >
117
+ <!--
118
+ Volume name must conform to a DNS label
119
+ https://github.com/kubernetes/kubernetes/blob/master/docs/design/identifiers.md
120
+ https://github.com/kubernetes/kubernetes/blob/d7a87c228506ed11240049ae95cbb4efb07fd178/pkg/util/validation/validation.go#L61-L70
121
+ -->
117
122
< input
118
123
id ="volume-path "
119
124
class ="form-control "
120
125
type ="text "
121
126
name ="volumeName "
122
127
ng-model ="attach.volumeName "
123
128
osc-unique ="existingVolumeNames "
129
+ ng-pattern ="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/ "
130
+ maxlength ="63 "
124
131
placeholder ="(generated if empty) "
125
132
autocorrect ="off "
126
133
autocapitalize ="off "
@@ -129,11 +136,22 @@ <h3>Volume</h3>
129
136
< div >
130
137
< span id ="volume-name-help " class ="help-block "> Unique name used to identify this volume. If not specified, a volume name is generated.</ span >
131
138
</ div >
132
- </ div >
133
- < div class ="has-error " ng-show ="attachPVCForm.volumeName.$error.oscUnique ">
134
- < span class ="help-block ">
135
- Volume name already exists. Please choose another name.
136
- </ span >
139
+ < div class ="has-error " ng-show ="attachPVCForm.volumeName.$error.pattern && attachPVCForm.volumeName.$touched ">
140
+ < span class ="help-block ">
141
+ Volume names may only contain lower-case letters, numbers, and dashes.
142
+ They may not start or end with a dash.
143
+ </ span >
144
+ </ div >
145
+ < div class ="has-error " ng-show ="attachPVCForm.volumeName.$error.maxlength ">
146
+ < span class ="help-block ">
147
+ Volume names cannot be longer than 63 characters.
148
+ </ span >
149
+ </ div >
150
+ < div class ="has-error " ng-show ="attachPVCForm.volumeName.$error.oscUnique ">
151
+ < span class ="help-block ">
152
+ Volume name already exists. Please choose another name.
153
+ </ span >
154
+ </ div >
137
155
</ div >
138
156
139
157
<!-- Prompt for containers only if there is more than one. -->
0 commit comments