Skip to content

Commit 1d3a73b

Browse files
Merge pull request #2443 from jwforres/route-edit-ca-help
Automatic merge from submit-queue. Bug 1471155 - update help text on CA inputs Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1471155
2 parents f4af210 + e773a5d commit 1d3a73b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/views/directives/osc-routing.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ <h3>Certificates</h3>
323323
model="route.tls.caCertificate"
324324
drop-zone-id="ca-certificate-file"
325325
show-text-area="true"
326-
help-text="The PEM format CA certificate. Upload file by dragging & dropping, selecting it, or pasting from the clipboard."
326+
help-text="The PEM format CA certificate chain. Upload file by dragging & dropping, selecting it, or pasting from the clipboard."
327327
ng-readonly="areCertificateInputsReadOnly()"
328328
ng-disabled="areCertificateInputsDisabled()">
329329
</osc-file-input>
@@ -334,7 +334,7 @@ <h3>Certificates</h3>
334334
model="route.tls.destinationCACertificate"
335335
show-text-area="true"
336336
drop-zone-id="dest-ca-certificate-file"
337-
help-text="The PEM format CA certificate to validate the endpoint certificate for re-encrypt termination. Upload file by dragging & dropping, selecting it, or pasting from the clipboard."
337+
help-text="The PEM format CA certificate chain to validate the endpoint certificate for re-encrypt termination. Upload file by dragging & dropping, selecting it, or pasting from the clipboard."
338338
ng-readonly="areCertificateInputsReadOnly()"
339339
ng-disabled="isDestinationCACertInputDisabled()">
340340
</osc-file-input>

dist/scripts/templates.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8615,12 +8615,12 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
86158615
"</div>\n" +
86168616
"<div class=\"form-group\" id=\"ca-certificate-file\">\n" +
86178617
"<label>CA Certificate</label>\n" +
8618-
"<osc-file-input model=\"route.tls.caCertificate\" drop-zone-id=\"ca-certificate-file\" show-text-area=\"true\" help-text=\"The PEM format CA certificate. Upload file by dragging & dropping, selecting it, or pasting from the clipboard.\" ng-readonly=\"areCertificateInputsReadOnly()\" ng-disabled=\"areCertificateInputsDisabled()\">\n" +
8618+
"<osc-file-input model=\"route.tls.caCertificate\" drop-zone-id=\"ca-certificate-file\" show-text-area=\"true\" help-text=\"The PEM format CA certificate chain. Upload file by dragging & dropping, selecting it, or pasting from the clipboard.\" ng-readonly=\"areCertificateInputsReadOnly()\" ng-disabled=\"areCertificateInputsDisabled()\">\n" +
86198619
"</osc-file-input>\n" +
86208620
"</div>\n" +
86218621
"<div class=\"form-group\" id=\"dest-ca-certificate-file\">\n" +
86228622
"<label>Destination CA Certificate</label>\n" +
8623-
"<osc-file-input model=\"route.tls.destinationCACertificate\" show-text-area=\"true\" drop-zone-id=\"dest-ca-certificate-file\" help-text=\"The PEM format CA certificate to validate the endpoint certificate for re-encrypt termination. Upload file by dragging & dropping, selecting it, or pasting from the clipboard.\" ng-readonly=\"areCertificateInputsReadOnly()\" ng-disabled=\"isDestinationCACertInputDisabled()\">\n" +
8623+
"<osc-file-input model=\"route.tls.destinationCACertificate\" show-text-area=\"true\" drop-zone-id=\"dest-ca-certificate-file\" help-text=\"The PEM format CA certificate chain to validate the endpoint certificate for re-encrypt termination. Upload file by dragging & dropping, selecting it, or pasting from the clipboard.\" ng-readonly=\"areCertificateInputsReadOnly()\" ng-disabled=\"isDestinationCACertInputDisabled()\">\n" +
86248624
"</osc-file-input>\n" +
86258625
"\n" +
86268626
"<div ng-if=\"route.tls.destinationCACertificate && route.tls.termination !== 'reencrypt' && !showCertificatesNotUsedWarning\" class=\"has-warning\">\n" +

0 commit comments

Comments
 (0)