forked from apache/flink
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FLINK-15639][k8s] Support to set tolerations for jobmanager and task…
…manger pod Taints and tolerations work together to ensure that pods are not scheduled onto inappropriate nodes. One or more taints are applied to a node; this marks that the node should not accept any pods that do not tolerate the taints. Tolerations are applied to pods, and allow (but do not require) the pods to schedule onto nodes with matching taints. This closes apache#11606 .
- Loading branch information
1 parent
5d9e5d4
commit 30311ec
Showing
10 changed files
with
148 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
.../src/main/java/org/apache/flink/kubernetes/kubeclient/resources/KubernetesToleration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.flink.kubernetes.kubeclient.resources; | ||
|
||
import io.fabric8.kubernetes.api.model.Toleration; | ||
import io.fabric8.kubernetes.api.model.TolerationBuilder; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import java.util.Map; | ||
|
||
/** | ||
* Represent Toleration resource in kubernetes. | ||
*/ | ||
public class KubernetesToleration extends KubernetesResource<Toleration> { | ||
|
||
private static final Logger LOG = LoggerFactory.getLogger(KubernetesToleration.class); | ||
|
||
private KubernetesToleration(Toleration toleration) { | ||
super(toleration); | ||
} | ||
|
||
public static KubernetesToleration fromMap(Map<String, String> stringMap) { | ||
final TolerationBuilder tolerationBuilder = new TolerationBuilder(); | ||
stringMap.forEach((k, v) -> { | ||
switch (k.toLowerCase()) { | ||
case "effect": | ||
tolerationBuilder.withEffect(v); | ||
break; | ||
case "key": | ||
tolerationBuilder.withKey(v); | ||
break; | ||
case "operator": | ||
tolerationBuilder.withOperator(v); | ||
break; | ||
case "tolerationseconds": | ||
tolerationBuilder.withTolerationSeconds(Long.valueOf(v)); | ||
break; | ||
case "value": | ||
tolerationBuilder.withValue(v); | ||
break; | ||
default: | ||
LOG.warn("Unrecognized key({}) of toleration, will ignore.", k); | ||
break; | ||
} | ||
}); | ||
return new KubernetesToleration(tolerationBuilder.build()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters