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 \
8787--namespace=rdi \
8888--from-literal=SOURCE_DB_PASSWORD=yourPassword
8989
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+
9193kubectl create secret generic source-db \
9294--namespace=rdi \
9395--from-literal=SOURCE_DB_CACERT=/etc/certificates/source_db/ca.crt
@@ -116,7 +118,9 @@ kubectl create secret generic target-db \
116118--namespace=rdi \
117119--from-literal=TARGET_DB_PASSWORD=yourPassword
118120
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+
120124kubectl create secret generic target-db \
121125--namespace=rdi \
122126--from-literal=TARGET_DB_CACERT=/etc/certificates/target-db/ca.crt
You can’t perform that action at this time.
0 commit comments