File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
content/integrate/redis-data-integration/data-pipelines Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,9 @@ kubectl create secret generic source-db \
87
87
--namespace=rdi \
88
88
--from-literal=SOURCE_DB_PASSWORD=yourPassword
89
89
90
- # Source trust certificate
90
+ # Source trust certificate (both commands are required)
91
+ kubectl create secret generic source-db-ssl --from-file=ca.crt=/path/to/myca.crt -n rdi
92
+
91
93
kubectl create secret generic source-db \
92
94
--namespace=rdi \
93
95
--from-literal=SOURCE_DB_CACERT=/etc/certificates/source_db/ca.crt
@@ -116,7 +118,9 @@ kubectl create secret generic target-db \
116
118
--namespace=rdi \
117
119
--from-literal=TARGET_DB_PASSWORD=yourPassword
118
120
119
- # Target trust certificate
121
+ # Target trust certificate (both commands are required)
122
+ kubectl create secret generic target-db-ssl --from-file=ca.crt=/path/to/myca.crt -n rdi
123
+
120
124
kubectl create secret generic target-db \
121
125
--namespace=rdi \
122
126
--from-literal=TARGET_DB_CACERT=/etc/certificates/target-db/ca.crt
You can’t perform that action at this time.
0 commit comments