This is an automated email from the ASF dual-hosted git repository.
dahn pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack-documentation.git
The following commit(s) were added to refs/heads/main by this push:
new 0146f46 Added sample ssh commands to connect to Control and Worker
node (#304)
0146f46 is described below
commit 0146f46ec784f230de3d72e58b9640e6cd1795e4
Author: kiranchavala <[email protected]>
AuthorDate: Wed Feb 22 14:59:55 2023 +0530
Added sample ssh commands to connect to Control and Worker node (#304)
Co-authored-by: dahn <[email protected]>
Co-authored-by: Abhishek Kumar <[email protected]>
---
source/plugins/cloudstack-kubernetes-service.rst | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/source/plugins/cloudstack-kubernetes-service.rst
b/source/plugins/cloudstack-kubernetes-service.rst
index 0373879..445ed98 100644
--- a/source/plugins/cloudstack-kubernetes-service.rst
+++ b/source/plugins/cloudstack-kubernetes-service.rst
@@ -153,6 +153,23 @@ A new network offering named
DefaultNetworkOfferingforKubernetesService has been
- Multi-control nodes, HA cluster can be created for Kubernetes version
1.16 and above only.
- While creating multi-control nodes, HA cluster over a shared network, an
external load-balancer must be manually setup. This load-balancer should have
port-forwarding rules for SSH, Kubernetes API server access. Service assumes
SSH access to cluster nodes is available from port 2222 to (2222 + cluster node
count -1). Similarly, for API access 6443 must be forwarded to control nodes.
Over the CloudStack isolated network these rules are automatically provisioned.
+
+Examples of how to ssh into the Control and Worker nodes
+
+Control node
+
+.. parsed-literal::
+
+ ssh -i <ssh-private.key > -p 2222 cloud@<Public ip address of Virtual
Router>
+
+Worker node
+
+.. parsed-literal::
+
+ ssh -i <ssh-private.key > -p 2223 cloud@<Public ip address of Virtual
Router>
+
+
+
Managing Kubernetes clusters
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~