-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add requirement about Taints
to the deployment guide
#183
Conversation
@@ -69,6 +69,8 @@ Install the following tools on your bastion for controlling the EKS cluster: | |||
* You must create a Kubernetes cluster with version 1.19 or higher for Scalar DL deployment. | |||
* You must create a node group with the label, key as `agentpool` and value as `scalardlpool` for Scalar DL deployment. | |||
* You must add a rule in the EKS security group to **enable HTTPS access (Port 443)** to the private EKS cluster from the bastion server. | |||
* You must add Taints `kubernetes.io/app=scalardlpool:NoSchedule` to each worker node. | |||
* You need to add the Taints using the `kubectl taint node` command after you created the cluster since EKS does not support adding Taints with key `kubernetes.io/app` to the node group. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a limitation of EKS.
aws/containers-roadmap#1451
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you!
BTW, I think Boney and Jishnu deployed scalar products without taints, but why did it work well?
@@ -69,6 +69,8 @@ Install the following tools on your bastion for controlling the EKS cluster: | |||
* You must create a Kubernetes cluster with version 1.19 or higher for Scalar DL deployment. | |||
* You must create a node group with the label, key as `agentpool` and value as `scalardlpool` for Scalar DL deployment. | |||
* You must add a rule in the EKS security group to **enable HTTPS access (Port 443)** to the private EKS cluster from the bastion server. | |||
* You must add Taints `kubernetes.io/app=scalardlpool:NoSchedule` to each worker node. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Manual deployment of Scalar DL worked fine for me without taint.
I did not face any issues related to this.
Let me check more about it.
Sorry for the delay.
@feeblefakie @scalar-boney I think the main purpose of If there is no When we use the
In the case of Scalar DL deployment, each deployment behavior is the following.
As above, Scalar DL pods can be deployed even if there is no However, we cannot make worker node dedicated to the Scalar DL pods if there is no |
This PR adds the explanation of
Taints
to the EKS/AKS deployment guide.I will reorganize these documents, but I added these sentence since I think it is a critical issue.
If we don't add this
Taints
to the worker node, the pods of Scalar Products will not be deployed with sample configurations since the sample configuration includes toleration to prevent application pods will be deployed to worker node for Scalar Products.Also, in the Japanese document, I already added the explanation of
Taints
.Please take a look!