Set a CI Node for Dependency Caching
Generally, different dependencies need to be pulled as applications are being built. This may cause some issues such as long pulling time and network instability, further resulting in build failures. To provide your pipeline with a more enabling and stable environment, you can configure a node or a group of nodes specifically for continuous integration (CI). These CI nodes can speed up the building process by using caches.
This tutorial demonstrates how to set CI nodes so that KubeSphere schedules tasks of pipelines and S2I/B2I builds to these nodes.
Prerequisites
You need a user granted a role including the permission of Cluster Management. For example, you can log in to the console as admin
directly or create a new role with the permission and assign it to a user.
Label a CI Node
-
Click Platform in the upper-left corner and select Cluster Management.
-
If you have enabled the multi-cluster feature with Member clusters imported, you can select a specific cluster to view its nodes. If you have not enabled the feature, refer to the next step directly.
-
Navigate to Cluster Nodes under Nodes, where you can see existing nodes in the current cluster.
-
Select a node from the list to run CI tasks. Click the node name to go to its details page. Click More and select Edit Labels.
-
In the displayed dialog box, you can see a label with the key
node-role.kubernetes.io/worker
. Enterci
for its value and click Save.Note
You can also click Add to add new labels based on your needs.
Add a Taint to a CI Node
Basically, pipelines and S2I/B2I workflows will be scheduled to this node according to node affinity. If you want to make the node a dedicated one for CI tasks, which means other workloads are not allowed to be scheduled to it, you can add a taint to it.
-
Click More and select Edit Taints.
-
Click Add Taint and enter a key
node.kubernetes.io/ci
without specifying a value. You can choosePrevent scheduling
,Prevent scheduling if possible
, orPrevent scheduling and evict existing Pods
based on your needs. -
Click Save. KubeSphere will schedule tasks according to the taint you set. You can go back to work on your DevOps pipeline now.
Tip
This tutorial also covers the operation related to node management. For detailed information, see Node Management.
Feedback
Was this page Helpful?
Receive the latest news, articles and updates from KubeSphere
Thanks for the feedback. If you have a specific question about how to use KubeSphere, ask it on Slack. Open an issue in the GitHub repo if you want to report a problem or suggest an improvement.