Skip to content

Commit 4ce7571

Browse files
authored
Merge pull request #87921 from wgabor0427/OSDOCS-9718
OSDOCS-9718 add two new steps under the Creating a route using the de…
2 parents b894b24 + 4797732 commit 4ce7571

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

modules/nw-ingress-reencrypt-route-custom-cert.adoc

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,26 @@ The `route.openshift.io/destination-ca-certificate-secret` annotation can be use
1717
1818
.Procedure
1919

20+
. Create a secret for the destination CA certificate by entering the following command:
21+
+
22+
[source,terminal]
23+
----
24+
$ oc create secret generic dest-ca-cert --from-file=tls.crt=<file_path>
25+
----
26+
+
27+
For example:
28+
+
29+
[source,terminal]
30+
----
31+
$ oc -n test-ns create secret generic dest-ca-cert --from-file=tls.crt=tls.crt
32+
----
33+
+
34+
.Example output
35+
[source,terminal]
36+
----
37+
secret/dest-ca-cert created
38+
----
39+
2040
. Add the `route.openshift.io/destination-ca-certificate-secret` to the Ingress annotations:
2141
+
2242
[source,yaml]

0 commit comments

Comments
 (0)