Skip to content

Commit 2041442

Browse files
committed
Add volume name validation when attaching PVCs
1 parent 619d346 commit 2041442

File tree

2 files changed

+35
-6
lines changed

2 files changed

+35
-6
lines changed

app/views/attach-pvc.html

+23-5
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,20 @@ <h3>Volume</h3>
114114

115115
<div class="form-group">
116116
<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/spadgett/kubernetes/blob/d7a87c228506ed11240049ae95cbb4efb07fd178/pkg/util/validation/validation.go#L61-L70
121+
-->
117122
<input
118123
id="volume-path"
119124
class="form-control"
120125
type="text"
121126
name="volumeName"
122127
ng-model="attach.volumeName"
123128
osc-unique="existingVolumeNames"
129+
ng-pattern="/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/"
130+
maxlength="63"
124131
placeholder="(generated if empty)"
125132
autocorrect="off"
126133
autocapitalize="off"
@@ -129,11 +136,22 @@ <h3>Volume</h3>
129136
<div>
130137
<span id="volume-name-help" class="help-block">Unique name used to identify this volume. If not specified, a volume name is generated.</span>
131138
</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>
137155
</div>
138156

139157
<!-- Prompt for containers only if there is more than one. -->

dist/scripts/templates.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -1171,16 +1171,27 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
11711171
"</div>\n" +
11721172
"<div class=\"form-group\">\n" +
11731173
"<label for=\"volume-name\">Volume Name</label>\n" +
1174-
"<input id=\"volume-path\" class=\"form-control\" type=\"text\" name=\"volumeName\" ng-model=\"attach.volumeName\" osc-unique=\"existingVolumeNames\" placeholder=\"(generated if empty)\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"volume-name-help\">\n" +
1174+
"\n" +
1175+
"<input id=\"volume-path\" class=\"form-control\" type=\"text\" name=\"volumeName\" ng-model=\"attach.volumeName\" osc-unique=\"existingVolumeNames\" ng-pattern=\"/^[a-z0-9]([-a-z0-9]*[a-z0-9])?$/\" maxlength=\"63\" placeholder=\"(generated if empty)\" autocorrect=\"off\" autocapitalize=\"off\" spellcheck=\"false\" aria-describedby=\"volume-name-help\">\n" +
11751176
"<div>\n" +
11761177
"<span id=\"volume-name-help\" class=\"help-block\">Unique name used to identify this volume. If not specified, a volume name is generated.</span>\n" +
11771178
"</div>\n" +
1179+
"<div class=\"has-error\" ng-show=\"attachPVCForm.volumeName.$error.pattern && attachPVCForm.volumeName.$touched\">\n" +
1180+
"<span class=\"help-block\">\n" +
1181+
"Volume names may only contain lower-case letters, numbers, and dashes. They may not start or end with a dash.\n" +
1182+
"</span>\n" +
1183+
"</div>\n" +
1184+
"<div class=\"has-error\" ng-show=\"attachPVCForm.volumeName.$error.maxlength\">\n" +
1185+
"<span class=\"help-block\">\n" +
1186+
"Volume names cannot be longer than 63 characters.\n" +
1187+
"</span>\n" +
11781188
"</div>\n" +
11791189
"<div class=\"has-error\" ng-show=\"attachPVCForm.volumeName.$error.oscUnique\">\n" +
11801190
"<span class=\"help-block\">\n" +
11811191
"Volume name already exists. Please choose another name.\n" +
11821192
"</span>\n" +
11831193
"</div>\n" +
1194+
"</div>\n" +
11841195
"\n" +
11851196
"<div ng-if=\"attach.resource.spec.template.spec.containers.length > 1\">\n" +
11861197
"<div ng-if=\"attach.allContainers\">\n" +

0 commit comments

Comments
 (0)