-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathextraConfigRT.py
31 lines (21 loc) · 864 Bytes
/
extraConfigRT.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from clustersConfig import ClustersConfig
from k8sClient import K8sClient
from logger import logger
from concurrent.futures import Future
from typing import Optional
from clustersConfig import ExtraConfigArgs
import host
def ExtraConfigRT(cc: ClustersConfig, _: ExtraConfigArgs, futures: dict[str, Future[Optional[host.Result]]]) -> None:
[f.result() for (_, f) in futures.items()]
is_sno = cc.is_sno()
logger.info("Running post config command to install rt kernel on worker nodes")
client = K8sClient(cc.kubeconfig)
resource = "sno-realtime.yaml" if is_sno else "worker-realtime.yaml"
client.oc(f"create -f manifests/rt/{resource}")
logger.info("Waiting for mcp to update")
name = "master" if is_sno else "worker"
client.wait_for_mcp(name, resource)
def main() -> None:
pass
if __name__ == "__main__":
main()