diff --git a/404.html b/404.html index 81333277327..cb856fc01e1 100644 --- a/404.html +++ b/404.html @@ -4,7 +4,7 @@ Page Not Found | Apache YuniKorn - + diff --git a/assets/js/da84cc0d.d1bc2d9c.js b/assets/js/da84cc0d.514fb0f2.js similarity index 99% rename from assets/js/da84cc0d.d1bc2d9c.js rename to assets/js/da84cc0d.514fb0f2.js index ec42f1abf2f..d82ebe9c94b 100644 --- a/assets/js/da84cc0d.d1bc2d9c.js +++ b/assets/js/da84cc0d.514fb0f2.js @@ -1 +1 @@ -"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[2652],{64487:(e,n,r)=>{r.r(n),r.d(n,{assets:()=>d,contentTitle:()=>s,default:()=>h,frontMatter:()=>t,metadata:()=>l,toc:()=>c});var o=r(13274),i=r(1780);const t={id:"deployment",title:"Deploy to Kubernetes"},s=void 0,l={id:"developer_guide/deployment",title:"Deploy to Kubernetes",description:"\x3c!--",source:"@site/docs/developer_guide/deployment.md",sourceDirName:"developer_guide",slug:"/developer_guide/deployment",permalink:"/docs/next/developer_guide/deployment",draft:!1,unlisted:!1,tags:[],version:"current",frontMatter:{id:"deployment",title:"Deploy to Kubernetes"},sidebar:"docs",previous:{title:"Go module updates",permalink:"/docs/next/developer_guide/dependencies"},next:{title:"Development in CodeReady Containers",permalink:"/docs/next/developer_guide/openshift_development"}},d={},c=[{value:"Build docker image",id:"build-docker-image",level:2},{value:"Setup RBAC for Scheduler",id:"setup-rbac-for-scheduler",level:2},{value:"Create/Update the ConfigMap",id:"createupdate-the-configmap",level:2},{value:"Deploy the Scheduler",id:"deploy-the-scheduler",level:2},{value:"Setup RBAC for Admission Controller",id:"setup-rbac-for-admission-controller",level:2},{value:"Create the Secret",id:"create-the-secret",level:2},{value:"Deploy the Admission Controller",id:"deploy-the-admission-controller",level:2},{value:"Access to the web UI",id:"access-to-the-web-ui",level:2},{value:"Configuration Hot Refresh",id:"configuration-hot-refresh",level:2}];function a(e){const n={a:"a",code:"code",em:"em",h2:"h2",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,i.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsxs)(n.p,{children:["The easiest way to deploy YuniKorn is to leverage our ",(0,o.jsx)(n.a,{href:"https://hub.helm.sh/charts/yunikorn/yunikorn",children:"helm charts"}),",\nyou can find the guide ",(0,o.jsx)(n.a,{href:"/docs/next/",children:"here"}),". This document describes the manual process to deploy YuniKorn\nscheduler and admission controller. It is primarily intended for developers."]}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," The primary source of deployment information is the Helm chart, which can be found at ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-release/",children:"yunikorn-release"}),". Manual deployment may lead to out-of-sync configurations, see ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/tree/master/deployments/scheduler",children:"deployments/scheduler"})]}),"\n",(0,o.jsx)(n.h2,{id:"build-docker-image",children:"Build docker image"}),"\n",(0,o.jsxs)(n.p,{children:["Under project root of the ",(0,o.jsx)(n.code,{children:"yunikorn-k8shim"}),", run the command to build an image using the map for the configuration:"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"make image\n"})}),"\n",(0,o.jsx)(n.p,{children:"This command will build an image. The image will be tagged with a default version, image tag and your build architecture."}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," the default build uses a hardcoded user and tag. You ",(0,o.jsx)(n.em,{children:"must"})," update the ",(0,o.jsx)(n.code,{children:"IMAGE_TAG"})," variable in the ",(0,o.jsx)(n.code,{children:"Makefile"})," to push to an appropriate repository."]}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," the latest yunikorn images in docker hub are not updated anymore due to ASF policy. Hence, you should build both scheduler image and web image locally before deploying them."]}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," the imaging tagging includes your build architecture. For Intel, it would be ",(0,o.jsx)(n.code,{children:"amd64"})," and for Mac M1, it would be ",(0,o.jsx)(n.code,{children:"arm64"}),"."]}),"\n",(0,o.jsx)(n.h2,{id:"setup-rbac-for-scheduler",children:"Setup RBAC for Scheduler"}),"\n",(0,o.jsxs)(n.p,{children:["In the example, RBAC are configured for the yuniKorn namespace.\nThe first step is to create the RBAC role for the scheduler, see ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/yunikorn-rbac.yaml",children:"yunikorn-rbac.yaml"})]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/yunikorn-rbac.yaml\n"})}),"\n",(0,o.jsx)(n.p,{children:"The role is a requirement on the current versions of kubernetes."}),"\n",(0,o.jsx)(n.h2,{id:"createupdate-the-configmap",children:"Create/Update the ConfigMap"}),"\n",(0,o.jsx)(n.p,{children:"This must be done before deploying the scheduler. It requires a correctly setup kubernetes environment.\nThis kubernetes environment can be either local or remote."}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"download configuration file if not available on the node to add to kubernetes:"}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"curl -o yunikorn-configs.yaml https://raw.githubusercontent.com/apache/yunikorn-k8shim/master/deployments/scheduler/yunikorn-configs.yaml\n"})}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"modify the content of yunikorn-configs.yaml file as needed, and apply yunikorn-configs.yaml file in kubernetes:"}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl apply -f yunikorn-configs.yaml\n"})}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"check if the ConfigMap was created/updated correctly:"}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl describe configmaps yunikorn-configs\n"})}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsxs)(n.li,{children:["for more configuration detail, see ",(0,o.jsx)(n.a,{href:"/docs/next/user_guide/service_config",children:"Service Configuration"}),"."]}),"\n"]}),"\n",(0,o.jsx)(n.h2,{id:"deploy-the-scheduler",children:"Deploy the Scheduler"}),"\n",(0,o.jsx)(n.p,{children:"The scheduler can be deployed with following command."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/scheduler.yaml\n"})}),"\n",(0,o.jsx)(n.p,{children:"The deployment will run 2 containers from your pre-built docker images in 1 pod,"}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"yunikorn-scheduler-core (yunikorn scheduler core and shim for K8s)"}),"\n",(0,o.jsx)(n.li,{children:"yunikorn-scheduler-web (web UI)"}),"\n"]}),"\n",(0,o.jsx)(n.p,{children:"Alternatively, the scheduler can be deployed as a K8S scheduler plugin:"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/plugin.yaml\n"})}),"\n",(0,o.jsxs)(n.p,{children:["The pod is deployed as a customized scheduler, it will take the responsibility to schedule pods which explicitly specifies ",(0,o.jsx)(n.code,{children:"schedulerName: yunikorn"})," in pod's spec. In addition to the ",(0,o.jsx)(n.code,{children:"schedulerName"}),", you will also have to add a label ",(0,o.jsx)(n.code,{children:"applicationId"})," to the pod."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-yaml",children:" metadata:\n name: pod_example\n labels:\n applicationId: appID\n spec:\n schedulerName: yunikorn\n"})}),"\n",(0,o.jsxs)(n.p,{children:["Note: Admission controller abstracts the addition of ",(0,o.jsx)(n.code,{children:"schedulerName"})," and ",(0,o.jsx)(n.code,{children:"applicationId"})," from the user and hence, routes all traffic to YuniKorn. If you use helm chart to deploy, it will install admission controller along with the scheduler. Otherwise, proceed to the steps below to manually deploy the admission controller if running non-example workloads where ",(0,o.jsx)(n.code,{children:"schedulerName"})," and ",(0,o.jsx)(n.code,{children:"applicationId"})," are not present in the pod spec and metadata, respectively."]}),"\n",(0,o.jsx)(n.h2,{id:"setup-rbac-for-admission-controller",children:"Setup RBAC for Admission Controller"}),"\n",(0,o.jsxs)(n.p,{children:["Before the admission controller is deployed, we must create its RBAC role, see ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/admission-controller-rbac.yaml",children:"admission-controller-rbac.yaml"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/admission-controller-rbac.yaml\n"})}),"\n",(0,o.jsx)(n.h2,{id:"create-the-secret",children:"Create the Secret"}),"\n",(0,o.jsxs)(n.p,{children:["Since the admission controller intercepts calls to the API server to validate/mutate incoming requests, we must deploy an empty secret\nused by the webhook server to store TLS certificates and keys. See ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/admission-controller-secrets.yaml",children:"admission-controller-secrets.yaml"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/admission-controller-secrets.yaml\n"})}),"\n",(0,o.jsx)(n.h2,{id:"deploy-the-admission-controller",children:"Deploy the Admission Controller"}),"\n",(0,o.jsxs)(n.p,{children:["Now we can deploy the admission controller as a service. This will automatically validate/modify incoming requests and objects, respectively, in accordance with the ",(0,o.jsx)(n.a,{href:"#Deploy-the-Scheduler",children:"example in Deploy the Scheduler"}),". See the contents of the admission controller deployment and service in ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/admission-controller.yaml",children:"admission-controller.yaml"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/admission-controller.yaml\n"})}),"\n",(0,o.jsx)(n.h2,{id:"access-to-the-web-ui",children:"Access to the web UI"}),"\n",(0,o.jsx)(n.p,{children:"When the scheduler is deployed, the web UI is also deployed in a container.\nPort forwarding for the web interface on the standard ports can be turned on via:"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl port-forward svc/yunikorn-service 9889 9080\n"})}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.code,{children:"9889"})," is the default port for Web UI, ",(0,o.jsx)(n.code,{children:"9080"})," is the default port of scheduler's Restful service where web UI retrieves info from.\nOnce this is done, web UI will be available at: ",(0,o.jsx)(n.a,{href:"http://localhost:9889",children:"http://localhost:9889"}),"."]}),"\n",(0,o.jsx)(n.h2,{id:"configuration-hot-refresh",children:"Configuration Hot Refresh"}),"\n",(0,o.jsx)(n.p,{children:"YuniKorn uses config maps for configurations, and it supports loading configuration changes automatically by watching config map changes using shared informers."}),"\n",(0,o.jsx)(n.p,{children:"To make configuration changes, simply update the content in the configmap, which can be done either via Kubernetes dashboard UI or command line. Note, changes made to the configmap might have some delay to be picked up by the scheduler."})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,o.jsx)(n,{...e,children:(0,o.jsx)(a,{...e})}):a(e)}},1780:(e,n,r)=>{r.d(n,{R:()=>s,x:()=>l});var o=r(79474);const i={},t=o.createContext(i);function s(e){const n=o.useContext(t);return o.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function l(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:s(e.components),o.createElement(t.Provider,{value:n},e.children)}}}]); \ No newline at end of file +"use strict";(self.webpackChunkwebsite=self.webpackChunkwebsite||[]).push([[2652],{64487:(e,n,r)=>{r.r(n),r.d(n,{assets:()=>d,contentTitle:()=>s,default:()=>h,frontMatter:()=>t,metadata:()=>l,toc:()=>c});var o=r(13274),i=r(1780);const t={id:"deployment",title:"Deploy to Kubernetes"},s=void 0,l={id:"developer_guide/deployment",title:"Deploy to Kubernetes",description:"\x3c!--",source:"@site/docs/developer_guide/deployment.md",sourceDirName:"developer_guide",slug:"/developer_guide/deployment",permalink:"/docs/next/developer_guide/deployment",draft:!1,unlisted:!1,tags:[],version:"current",frontMatter:{id:"deployment",title:"Deploy to Kubernetes"},sidebar:"docs",previous:{title:"Go module updates",permalink:"/docs/next/developer_guide/dependencies"},next:{title:"Development in CodeReady Containers",permalink:"/docs/next/developer_guide/openshift_development"}},d={},c=[{value:"Build docker image",id:"build-docker-image",level:2},{value:"Setup RBAC for Scheduler",id:"setup-rbac-for-scheduler",level:2},{value:"Create/Update the ConfigMap",id:"createupdate-the-configmap",level:2},{value:"Deploy the Scheduler",id:"deploy-the-scheduler",level:2},{value:"Setup RBAC for Admission Controller",id:"setup-rbac-for-admission-controller",level:2},{value:"Create the Secret",id:"create-the-secret",level:2},{value:"Deploy the Admission Controller",id:"deploy-the-admission-controller",level:2},{value:"Access to the web UI",id:"access-to-the-web-ui",level:2},{value:"Configuration Hot Refresh",id:"configuration-hot-refresh",level:2}];function a(e){const n={a:"a",code:"code",em:"em",h2:"h2",li:"li",p:"p",pre:"pre",strong:"strong",ul:"ul",...(0,i.R)(),...e.components};return(0,o.jsxs)(o.Fragment,{children:[(0,o.jsxs)(n.p,{children:["The easiest way to deploy YuniKorn is to leverage our ",(0,o.jsx)(n.a,{href:"https://hub.helm.sh/charts/yunikorn/yunikorn",children:"helm charts"}),",\nyou can find the guide ",(0,o.jsx)(n.a,{href:"/docs/next/",children:"here"}),". This document describes the manual process to deploy YuniKorn\nscheduler and admission controller. It is primarily intended for developers."]}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," The primary source of deployment information is the Helm chart, which can be found at ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-release/",children:"yunikorn-release"}),". Manual deployment may lead to out-of-sync configurations, see ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/tree/master/deployments/scheduler",children:"deployments/scheduler"})]}),"\n",(0,o.jsx)(n.h2,{id:"build-docker-image",children:"Build docker image"}),"\n",(0,o.jsxs)(n.p,{children:["Under project root of the ",(0,o.jsx)(n.code,{children:"yunikorn-k8shim"}),", run the command to build an image using the map for the configuration:"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"make image\n"})}),"\n",(0,o.jsx)(n.p,{children:"This command will build an image. The image will be tagged with a default version, image tag and your build architecture."}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," the default build uses a hardcoded user and tag. You ",(0,o.jsx)(n.em,{children:"must"})," update the ",(0,o.jsx)(n.code,{children:"IMAGE_TAG"})," variable in the ",(0,o.jsx)(n.code,{children:"Makefile"})," to push to an appropriate repository."]}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," the latest yunikorn images in docker hub are not updated anymore due to ASF policy. Hence, you should build both scheduler image and web image locally before deploying them."]}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.strong,{children:"Note"})," the imaging tagging includes your build architecture. For Intel, it would be ",(0,o.jsx)(n.code,{children:"amd64"})," and for Mac M1, it would be ",(0,o.jsx)(n.code,{children:"arm64"}),"."]}),"\n",(0,o.jsx)(n.h2,{id:"setup-rbac-for-scheduler",children:"Setup RBAC for Scheduler"}),"\n",(0,o.jsxs)(n.p,{children:["In the example, RBAC are configured for the yuniKorn namespace.\nThe first step is to create the RBAC role for the scheduler, see ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/yunikorn-rbac.yaml",children:"yunikorn-rbac.yaml"})]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/yunikorn-rbac.yaml\n"})}),"\n",(0,o.jsx)(n.p,{children:"The role is a requirement on the current versions of kubernetes."}),"\n",(0,o.jsx)(n.h2,{id:"createupdate-the-configmap",children:"Create/Update the ConfigMap"}),"\n",(0,o.jsx)(n.p,{children:"This must be done before deploying the scheduler. It requires a correctly setup kubernetes environment.\nThis kubernetes environment can be either local or remote."}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"download configuration file if not available on the node to add to kubernetes:"}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"curl -o yunikorn-configs.yaml https://raw.githubusercontent.com/apache/yunikorn-k8shim/master/deployments/scheduler/yunikorn-configs.yaml\n"})}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"modify the content of yunikorn-configs.yaml file as needed, and apply yunikorn-configs.yaml file in kubernetes:"}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl apply -f yunikorn-configs.yaml\n"})}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"check if the ConfigMap was created/updated correctly:"}),"\n"]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl describe configmaps yunikorn-configs\n"})}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsxs)(n.li,{children:["for more configuration detail, see ",(0,o.jsx)(n.a,{href:"/docs/next/user_guide/service_config",children:"Service Configuration"}),"."]}),"\n"]}),"\n",(0,o.jsx)(n.h2,{id:"deploy-the-scheduler",children:"Deploy the Scheduler"}),"\n",(0,o.jsx)(n.p,{children:"The scheduler can be deployed with following command."}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/scheduler.yaml\n"})}),"\n",(0,o.jsx)(n.p,{children:"The deployment will run 2 containers from your pre-built docker images in 1 pod,"}),"\n",(0,o.jsxs)(n.ul,{children:["\n",(0,o.jsx)(n.li,{children:"yunikorn-scheduler-core (yunikorn scheduler core and shim for K8s)"}),"\n",(0,o.jsx)(n.li,{children:"yunikorn-scheduler-web (web UI)"}),"\n"]}),"\n",(0,o.jsx)(n.p,{children:"Alternatively, the scheduler can be deployed as a K8S scheduler plugin:"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/plugin.yaml\n"})}),"\n",(0,o.jsxs)(n.p,{children:["The pod is deployed as a customized scheduler, it will take the responsibility to schedule pods which explicitly specifies ",(0,o.jsx)(n.code,{children:"schedulerName: yunikorn"})," in pod's spec. In addition to the ",(0,o.jsx)(n.code,{children:"schedulerName"}),", you will also have to add a label ",(0,o.jsx)(n.code,{children:"applicationId"})," to the pod."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{className:"language-yaml",children:" metadata:\n name: pod_example\n labels:\n applicationId: appID\n spec:\n schedulerName: yunikorn\n"})}),"\n",(0,o.jsxs)(n.p,{children:["Note: Admission controller abstracts the addition of ",(0,o.jsx)(n.code,{children:"schedulerName"})," and ",(0,o.jsx)(n.code,{children:"applicationId"})," from the user and hence, routes all traffic to YuniKorn. If you use helm chart to deploy, it will install admission controller along with the scheduler. Otherwise, proceed to the steps below to manually deploy the admission controller if running non-example workloads where ",(0,o.jsx)(n.code,{children:"schedulerName"})," and ",(0,o.jsx)(n.code,{children:"applicationId"})," are not present in the pod spec and metadata, respectively."]}),"\n",(0,o.jsx)(n.h2,{id:"setup-rbac-for-admission-controller",children:"Setup RBAC for Admission Controller"}),"\n",(0,o.jsxs)(n.p,{children:["Before the admission controller is deployed, we must create its RBAC role, see ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/admission-controller-rbac.yaml",children:"admission-controller-rbac.yaml"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/admission-controller-rbac.yaml\n"})}),"\n",(0,o.jsx)(n.h2,{id:"create-the-secret",children:"Create the Secret"}),"\n",(0,o.jsxs)(n.p,{children:["Since the admission controller intercepts calls to the API server to validate/mutate incoming requests, we must deploy an empty secret\nused by the webhook server to store TLS certificates and keys. See ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/admission-controller-secrets.yaml",children:"admission-controller-secrets.yaml"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/admission-controller-secrets.yaml\n"})}),"\n",(0,o.jsx)(n.h2,{id:"deploy-the-admission-controller",children:"Deploy the Admission Controller"}),"\n",(0,o.jsxs)(n.p,{children:["Now we can deploy the admission controller as a service. This will automatically validate/modify incoming requests and objects, respectively, in accordance with the ",(0,o.jsx)(n.a,{href:"#deploy-the-scheduler",children:"example in Deploy the Scheduler"}),". See the contents of the admission controller deployment and service in ",(0,o.jsx)(n.a,{href:"https://github.com/apache/yunikorn-k8shim/blob/master/deployments/scheduler/admission-controller.yaml",children:"admission-controller.yaml"}),"."]}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl create -f deployments/scheduler/admission-controller.yaml\n"})}),"\n",(0,o.jsx)(n.h2,{id:"access-to-the-web-ui",children:"Access to the web UI"}),"\n",(0,o.jsx)(n.p,{children:"When the scheduler is deployed, the web UI is also deployed in a container.\nPort forwarding for the web interface on the standard ports can be turned on via:"}),"\n",(0,o.jsx)(n.pre,{children:(0,o.jsx)(n.code,{children:"kubectl port-forward svc/yunikorn-service 9889 9080\n"})}),"\n",(0,o.jsxs)(n.p,{children:[(0,o.jsx)(n.code,{children:"9889"})," is the default port for Web UI, ",(0,o.jsx)(n.code,{children:"9080"})," is the default port of scheduler's Restful service where web UI retrieves info from.\nOnce this is done, web UI will be available at: ",(0,o.jsx)(n.a,{href:"http://localhost:9889",children:"http://localhost:9889"}),"."]}),"\n",(0,o.jsx)(n.h2,{id:"configuration-hot-refresh",children:"Configuration Hot Refresh"}),"\n",(0,o.jsx)(n.p,{children:"YuniKorn uses config maps for configurations, and it supports loading configuration changes automatically by watching config map changes using shared informers."}),"\n",(0,o.jsx)(n.p,{children:"To make configuration changes, simply update the content in the configmap, which can be done either via Kubernetes dashboard UI or command line. Note, changes made to the configmap might have some delay to be picked up by the scheduler."})]})}function h(e={}){const{wrapper:n}={...(0,i.R)(),...e.components};return n?(0,o.jsx)(n,{...e,children:(0,o.jsx)(a,{...e})}):a(e)}},1780:(e,n,r)=>{r.d(n,{R:()=>s,x:()=>l});var o=r(79474);const i={},t=o.createContext(i);function s(e){const n=o.useContext(t);return o.useMemo((function(){return"function"==typeof e?e(n):{...n,...e}}),[n,e])}function l(e){let n;return n=e.disableParentContext?"function"==typeof e.components?e.components(i):e.components||i:s(e.components),o.createElement(t.Provider,{value:n},e.children)}}}]); \ No newline at end of file diff --git a/assets/js/runtime~main.4feeb374.js b/assets/js/runtime~main.42b0fa45.js similarity index 99% rename from assets/js/runtime~main.4feeb374.js rename to assets/js/runtime~main.42b0fa45.js index 1ebe5f9d560..18fa0e6a704 100644 --- a/assets/js/runtime~main.4feeb374.js +++ b/assets/js/runtime~main.42b0fa45.js @@ -1 +1 @@ -(()=>{"use strict";var e,b,a,f,c,d={},t={};function r(e){var b=t[e];if(void 0!==b)return b.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return d[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=d,r.c=t,e=[],r.O=(b,a,f,c)=>{if(!a){var d=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var b=e&&e.__esModule?()=>e.default:()=>e;return r.d(b,{a:b}),b},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var d={};b=b||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~b.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((b=>d[b]=()=>e[b]));return d.default=()=>e,r.d(c,d),c},r.d=(e,b)=>{for(var a in b)r.o(b,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:b[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((b,a)=>(r.f[a](e,b),b)),[])),r.u=e=>"assets/js/"+({15:"8102b5ac",36:"19e8550d",353:"d8ac4d11",359:"31dd2b75",536:"086d5e3f",1038:"d16572ac",1316:"22290b7c",2075:"f933782b",2123:"0b9c6e63",2450:"04768086",2647:"dcb5266f",2652:"da84cc0d",2932:"ce9e2dcf",2960:"0f3f8c85",3210:"1ef3c4cb",3233:"a5f90f12",3262:"94e4428c",3299:"89522323",3302:"c8855521",3640:"1626930f",3735:"da4a45a6",3926:"97ff1006",4047:"c0390a80",4105:"1cb009e2",4113:"6947aa75",4432:"548a188b",4736:"89cbeac6",4886:"13f29f79",4946:"0519d6ff",5005:"17e08b0c",5148:"5d738820",5415:"01627567",5715:"a5b5dcea",5874:"f8b6f1ce",5886:"30de4b0c",6149:"78d8c6ce",6182:"b2f441e1",6249:"97cf841f",6255:"86bd704e",6368:"442d4849",6428:"f7c05237",6507:"95c50459",6524:"ae9f1acc",6595:"9f84576c",6669:"bff552dd",6988:"53d6c163",7180:"c0873f99",7202:"3c851dde",7292:"19d98c6a",7402:"af25c48f",7420:"bf59ca81",7545:"fc009b8f",7727:"08958cc8",8248:"90571119",8250:"e897f185",8387:"6187a22c",8641:"3683234c",8682:"28f896bb",8711:"b534254a",8725:"3384d06b",8765:"5c9389cb",8853:"341034ab",8919:"7ce1a762",8960:"31bb26c2",9045:"54213aa1",9197:"f7f2e981",9362:"4c43497a",9371:"3b084a86",9508:"8fce5129",9591:"57d3a897",9647:"5e95c892",9669:"e80a80ce",9763:"605a9692",9768:"284c0406",9790:"d3bbc5fd",9895:"d8538008",10325:"197162c9",10394:"7d04a98b",10467:"3cbcee45",10571:"3dd193dd",10783:"203393bb",10836:"5188416b",10853:"ec5ce2a8",11157:"178e95a2",11200:"564cd4c0",11384:"66d67008",11429:"61e9bb6e",11506:"730062b1",11866:"b8c87182",11969:"a40e4d8d",12031:"f17eea78",12032:"f31b0025",12515:"d1187d43",12646:"354854e1",12726:"c95b781b",12791:"ebb6a828",13021:"6875b121",13089:"1a8d89d5",13208:"8f3eca0e",13299:"5a396677",13843:"6bf8e8e6",13940:"db9c64ed",14140:"20d575d4",14162:"0b0c644f",14338:"65d34724",14602:"28164c5f",14774:"a521008d",15306:"0f214f11",15327:"d69b5ce4",15889:"d4751fcb",15929:"b99ad014",16061:"7b6b8da6",16081:"04f93611",16192:"b8d9badc",16248:"0e6e7f1a",16308:"92ebcf1c",16325:"959f8bcb",16337:"495df45a",16341:"a617c0b8",16626:"ce784664",16939:"eb39d40e",16949:"a1c02285",17303:"d3b31caa",17369:"c52cb584",17657:"30b0614b",17785:"be46464e",18119:"6f2f0c4c",18122:"f63c7767",18181:"d15d046b",18265:"660f1f01",18340:"c1d1596b",18401:"17896441",18500:"5652c446",18578:"de4cf88e",18827:"5d439d21",19109:"08b63e68",19293:"7ea12187",19393:"fea909d2",19411:"53c63e3f",19662:"d443b36e",19699:"0dcca658",20118:"f9faa05a",20329:"26eafd15",20389:"2457c0ef",20515:"94abfae6",21187:"a65c2029",21559:"81215a04",21600:"e0250fe6",21672:"4fd3fe56",22152:"65e91a71",22343:"fa9bdbac",22408:"d4cdbb95",22442:"f0045c87",22483:"fd2b2a05",22600:"80348dae",22773:"a75efafa",22819:"aea8cccb",23014:"0565d9f4",23016:"d063fe9f",23075:"b8a75ff1",23115:"85ff2641",23626:"098cffed",23714:"0203cbc2",23819:"5cf764b1",23907:"70245927",24045:"a7022165",24165:"dfc96154",24288:"deaca5dd",24451:"2774336d",24616:"528dfaf3",24697:"8daebb13",24944:"e718b7e6",25042:"acc1e0c7",25207:"3d7f4be7",25263:"b6a19a2b",25308:"aa222e6d",25391:"121a060a",25661:"288b5fa4",25729:"9879f36f",25871:"1e0f4596",25892:"d3377450",26021:"5a3f9071",26091:"fadff26c",26112:"6dd3a2f1",26133:"deedc2a8",26152:"a6860501",26155:"e951bf48",26328:"fc3648c4",26480:"c6405911",26592:"83f9573b",27029:"3bfd86a6",27083:"761be9ac",27467:"1514c2db",27504:"b06b747e",27683:"c3b79105",27826:"c9dad6db",28079:"52045c4e",28104:"92cca7ce",28107:"174d46b8",28112:"0810aeb4",28153:"988211ef",28268:"add37b26",28564:"8199a7c1",28768:"c452b0b7",28922:"203f692a",29571:"67158670",29853:"02ad889d",29976:"e9498790",30079:"cd8a45a6",30090:"45af7cbe",30204:"621f1fa8",30563:"cc3eb85c",30749:"2c019423",31087:"830bde22",31245:"c65b3d63",31255:"8d971cbb",31412:"4bbb5eb1",31425:"6c36aa60",31492:"fb0baf48",31609:"529f7014",31669:"8ad1c52d",31836:"2dc84aaf",31872:"3e90f77d",32102:"39e6d37f",32131:"9e9f5dce",32209:"c0a49dd7",32272:"3deac311",32287:"15d1a8b2",32470:"e50d8128",32477:"f82ec024",32861:"3dd644e6",32961:"d5f4f3d4",32968:"293bee56",33070:"e75f0651",33109:"284fa5fb",33214:"8b190d09",33261:"da845f06",33270:"d7cf88d1",33386:"cd72eb9e",33478:"1f445f4e",33523:"3d1791fa",33706:"b1c24be0",33707:"a05f508e",33748:"6bb5aff3",33811:"7fc5f702",33871:"a6e9442a",33936:"13cf577a",34062:"1f87d76b",34128:"3110a528",34221:"cd9d94be",34412:"df632275",34463:"db881351",34473:"b9526204",34654:"024f5110",34786:"0448914c",34857:"6dc7dc4a",34870:"a9bc95bb",35160:"6d7a4f7b",35173:"afe6f65e",35230:"c7eff138",35401:"8e403b22",35581:"d28f8723",36154:"09920c24",36253:"83debc9b",36347:"1072df95",36597:"13f68f62",36598:"5ba37eca",36645:"a7fed74b",36814:"ae8ddf81",36852:"ce30221e",37310:"c7277ad6",37404:"be6859b2",37571:"067a7414",37586:"229fac93",37681:"f03fab11",37690:"96345a43",37726:"92d75d1c",37802:"facbb56d",37974:"6e3154f7",38090:"77816f9e",38600:"a633adf5",38613:"98952d49",38620:"58597cf2",38622:"cf736a7b",38634:"cacb3d65",39013:"08ea7f98",39038:"6388662f",39078:"92667337",39221:"f6d558f6",39545:"89a0a60a",39561:"3f99eb33",39667:"29295ff3",40081:"f769181d",40249:"72207194",40523:"7c3e0a90",40570:"4ff49acf",40683:"925455b6",40742:"b695efd2",40802:"2b4143dc",40844:"915fdef3",40905:"b0f84f31",41229:"2f7b0683",41399:"2757bf0a",41576:"00a17dd8",41880:"e74fe2a7",42018:"278ee235",42183:"0b9e986a",42389:"93c6800a",42420:"ac710fda",42656:"45a2a32a",42683:"c928173c",42839:"15abff36",42856:"33aa855a",43087:"6d78f76d",43162:"2f626edb",43169:"ed3bee84",43289:"91d25720",43514:"88ef04a7",43516:"2b10040d",43568:"99e0db6b",43749:"b3a8e371",43948:"c08d65fc",44077:"1d098224",44556:"c25457d3",45071:"dbb33cef",45087:"f6435ed1",45623:"139f73fe",45681:"1e6876ab",45738:"cfabf7e9",45903:"98d35d14",45951:"25e935c4",46001:"56be068b",46067:"c78cff6c",46069:"d0cc8b4f",46137:"45f98d44",46484:"a77f4c3b",46571:"78e4148a",46765:"bb9f8df1",47063:"22d92bf3",47643:"0f66ed5f",48098:"e0cfa6fb",48110:"93e59a16",48190:"6abe350e",48724:"0dc95480",48866:"8b608a5c",48900:"afee9407",49042:"43c45fbd",49167:"883b80f5",49232:"3f297b93",49294:"1a7d2b73",49364:"85f02d4b",49409:"daba4570",49706:"29a3d0d6",50528:"34af491e",50763:"45113257",50794:"c140d46c",51030:"34d88677",51068:"bcca5012",51103:"1d314591",51200:"bebf10ba",51269:"958e6623",51308:"da3e9658",51645:"244eac16",51791:"0131ba20",51800:"54b2a591",52072:"842b9c6e",52140:"a7cd363d",52153:"d4e92657",52335:"fd8e5d2f",52550:"641fb5ab",52634:"c4f5d8e4",52694:"8aa5df97",52891:"afbdcc09",53036:"2999c86a",53045:"f1bf9ead",53320:"5c518724",53409:"c70aa1ed",53416:"9523dcb5",53716:"5c9831a7",53754:"bb9c3ed9",53870:"4d53942d",54357:"1dea1673",54727:"f5272822",54784:"075bf599",54838:"8daf2cfc",55067:"ca3ac135",55286:"474cf6da",55380:"b2399376",55449:"56f4e815",55526:"cff1c286",55570:"43a73887",55991:"c3dff334",56107:"5166b893",56158:"17c1bf74",56173:"abd6c138",56176:"bd9c2ce3",56333:"3e76e7e2",56601:"ca87bd6e",56672:"a6514927",56802:"9e33764b",56809:"9eea1548",57346:"548f5e59",57387:"be7a0dbe",57426:"b9bde1e9",57618:"649b7061",57813:"1dcb712d",57871:"33daa5c8",57949:"5c9ba668",58133:"c0bd6a4b",58241:"1394ac74",58250:"e5e048c5",58356:"64a11ff0",58465:"e59213c0",58705:"c8ec7de9",58711:"ac22c4de",58755:"829baac4",58764:"8f5ca9a8",58946:"813c57df",58969:"5603f239",59140:"79b08c73",59295:"a3542ba4",59388:"6454a05b",59449:"92b7280d",59682:"de8ad7db",59783:"33031c96",59911:"484362c2",59960:"116ce0e0",60042:"34672d36",60043:"073760cf",60126:"b16939e2",60491:"e7752ddb",60912:"a649354c",61056:"3951a3d5",61076:"fafbe599",61145:"dbbae471",61408:"53ba98a8",61601:"d872d333",61674:"3dbf3764",61895:"a4a95510",61980:"617e9601",62092:"d6e66bbb",62112:"333ae3de",62138:"1a4e3797",62242:"532b25e9",62270:"6069883e",62809:"5df7ef96",62948:"8d20ce23",63184:"b9d8091f",63285:"66a5fdbd",63551:"52e54cbf",63588:"debcf1ca",63625:"25778245",64078:"bd0b3be5",64476:"a3cf9e9a",64575:"1cb70b87",64660:"1582f434",64705:"e2e6c14f",64727:"58a729ec",64818:"96225825",64915:"63d0f0e0",65038:"7c4de6ae",65150:"0976f607",65429:"1c9209f4",65441:"f14a91aa",65473:"a008f403",65672:"9f72f8ad",65867:"02b8ff39",65880:"21fffddb",66061:"1f391b9e",66115:"3484cec4",66303:"3c15e784",66324:"26c8b3d3",66359:"34ee1a85",66564:"c512952f",67098:"a7bd4aaa",67148:"c07122e1",67228:"e3e676f7",67270:"4d985d8a",67291:"67b585cb",67459:"a38fce19",67546:"e2561c05",68047:"1f5d5f87",68576:"b5b50fa2",68596:"e8ce8f9a",69061:"5ae3e876",69085:"36f1c627",69166:"48b422ba",69349:"5adad896",69465:"a65edd96",69977:"3bfb82cf",69999:"ead72281",70180:"bff0400e",70273:"fb133e19",70294:"c3a3eb3c",70377:"b780b841",70699:"b6ccfdca",70706:"09fd6bc3",70747:"49077a33",70806:"0ffa903f",70860:"b31cf73f",70921:"03ef24a9",70948:"a8ec943f",71013:"6b6cd41d",71453:"e15bcb33",71457:"aa392378",71560:"32947c92",72405:"1fec1075",72406:"bce28ad4",72420:"b027356b",72780:"4c517393",72903:"fd3398f1",72913:"0b7eabf3",72982:"2e1bbbbe",73171:"07de990d",73195:"a8913000",73204:"57176175",73235:"a2c14f61",73509:"c56532b8",73607:"579c441c",74118:"9ce8caa5",74146:"9aa2d1d3",74259:"27e1f4b3",74287:"719705af",74356:"6a4d9186",74618:"5877df2d",74838:"23b73747",75102:"6a858f16",75397:"c2467954",75566:"c9bc13ce",75751:"9a6d52da",75780:"84555378",75853:"cd78c8cb",76047:"58082863",76108:"d808852d",76120:"8d2ab356",76438:"9a3fbf2b",76635:"13b56c59",76709:"76634d71",76786:"aea5966f",76842:"e62294b1",77007:"9f2f7e81",77039:"d6ce4507",77177:"253fbb59",77401:"68bfee64",77494:"24bb3679",77564:"1b5b94bb",77630:"2cdd7720",77671:"8a525f09",77778:"879025b0",77993:"3826374e",78023:"4bbb7f4a",78187:"d77c210f",78201:"a2c1c70a",78425:"b198df35",78678:"dc8253a3",78763:"d84189a7",79048:"a94703ab",79050:"8bc280ca",79322:"5345c07d",79323:"6175b9e3",79767:"f00baad2",79798:"9707d709",79862:"17c79707",80047:"447f169e",80097:"6a14e4a6",80266:"b94a2346",80551:"26b9516c",80567:"62e81aa6",80715:"c1be4069",81044:"f12e5031",81073:"785bbfee",81270:"0780ab69",81367:"131f5b8d",81516:"98bfff7a",81517:"91fda863",81542:"1a38f637",81618:"3f50cac0",81745:"3619f683",81848:"39455ce1",81874:"efa2f5a1",82175:"ed701816",82206:"392e1a00",82362:"5eab74b1",82413:"cf5a4cff",82432:"5b270591",82495:"3259ac92",82669:"df6ab4bc",82756:"d643cbaf",82862:"47b8b18c",83045:"0b0ea5f1",83371:"b56a9dad",83379:"66527541",83416:"48c9bcee",83430:"e36c389f",83486:"6561ff8a",83510:"8f69be8c",83553:"31c3b644",83593:"2432bf2e",83683:"4293d558",84795:"1e32b83f",84838:"4e1badf8",84927:"2acaeb1a",84933:"481cf853",85103:"e8b823ec",85682:"a9215700",85739:"4cd336cf",85775:"e127b1c1",85812:"12af6885",85958:"e7c63a3c",86048:"e0ea7e73",86164:"f3be527a",86260:"04f00c7c",86547:"00aed75b",86618:"5e906dfd",86650:"fc9493b5",86673:"0a87ba36",86898:"2768bd3e",87392:"e6aabe98",87683:"0734b534",88353:"51392a58",88464:"97597cd7",88542:"dadaae3f",88852:"e3883bac",89173:"04f5229b",89732:"330bcee0",89753:"427c3667",89760:"cb2f5335",89838:"1f466884",89845:"2a3c922d",89907:"506691da",89983:"34003c72",90046:"bd59b609",90302:"8627d2ff",90310:"e42b3d9d",90442:"cbc12d17",90455:"6db854fa",91136:"ed0bdba3",91164:"477a37df",91416:"59ca9e65",91467:"92a19523",91494:"12c7c638",91554:"d9f7e22f",91702:"69994b68",91857:"8c9cae58",92052:"c610c5a8",92307:"aa2738c3",92554:"a8d4abbe",92747:"42f05cce",92763:"863d209f",92802:"055b225f",93120:"8e7559bb",93124:"42e8cbb3",93474:"c3efefe4",93637:"e91b02be",93669:"a252b33f",93799:"352379af",93936:"850ece50",93978:"0fe0ccc7",94075:"4171ae7f",94155:"8a4daa3b",94246:"872379cf",94433:"efe1d13a",94485:"1df0bf2a",94526:"9746ca7b",94530:"6f0123ef",94852:"2308dcf3",94979:"8ac907f8",95016:"8e1bf126",95080:"a3304b48",95105:"4356428f",95309:"5bd52431",95315:"f3634bd2",95316:"e30960a7",95328:"8c6b97bf",95392:"74f9148b",95520:"026b0f1d",95656:"d8aa108f",95843:"4677217b",95851:"648a3482",95966:"15659d54",96321:"30fe064f",96443:"6540f7c7",96529:"2fbebc4d",96553:"70f17b6a",96751:"559ca816",96848:"58fe75b9",97185:"47d3ce37",97220:"1094d3ac",97239:"259c64e2",97446:"9754eb65",97555:"e6f1bbf8",97642:"432ba8c0",97692:"2e7b1ecd",97766:"4be882fd",97884:"33b8ac1d",97988:"af30bbb1",98037:"8745e5b0",98206:"0cd5b1a7",98291:"ec7ac759",98581:"935f2afb",98601:"62cdd780",98808:"d248ca85",99222:"794b0494",99377:"cb5e20e2",99441:"9e98946b",99746:"751b68b4",99784:"82d2d99a",99917:"8a6e3c59"}[e]||e)+"."+{15:"5a4c8853",36:"9d3fb395",353:"5377980a",359:"3866b417",536:"c5874d41",1038:"bcb42e2c",1316:"e95dbe8d",2075:"a81ae20f",2123:"1cd0f5a7",2450:"06490107",2647:"3b7810c2",2652:"d1bc2d9c",2932:"511f0228",2960:"bbc91bcd",3210:"17359c8b",3233:"4f6b9baa",3262:"5233df3a",3299:"a43c0931",3302:"80a10138",3640:"d2c67571",3735:"4ee5b9f4",3926:"7f667f06",4047:"29fdbd7a",4105:"af204dfd",4113:"abecc939",4432:"c72e9f21",4736:"6d08f9a0",4886:"f0499039",4946:"01542bc0",5005:"58b1df97",5148:"0c3a26f0",5415:"dfdf64e0",5715:"a7fe51b4",5874:"2ea0044f",5886:"30239bb7",6149:"f24564f6",6182:"fe0898b0",6249:"8996c919",6255:"74224db3",6368:"3790aef0",6428:"ad8041fa",6507:"22054a01",6524:"7accbf49",6595:"28d10394",6669:"63daa4da",6988:"ab3e06cd",7180:"99c9ef39",7202:"45b065e3",7292:"31922f45",7402:"f0836343",7420:"d16f8428",7545:"17e51b46",7727:"36dae34f",8248:"f5155aae",8250:"814b2953",8387:"e71415b2",8641:"d23bfbc8",8682:"389785e0",8711:"96c4a535",8725:"1211983d",8765:"ac41f758",8853:"2f6f299b",8919:"09c78370",8960:"aa087df0",9045:"b229978d",9197:"3350dd54",9362:"492ebe4e",9371:"38589bfe",9508:"25198bc4",9591:"438f805f",9647:"6546dd97",9669:"97d81816",9763:"13e66a77",9768:"a7cbe9d6",9790:"34b32919",9895:"010e53d0",10325:"5cf3a045",10394:"d39575ac",10467:"82906042",10571:"ce72f903",10783:"c166a38a",10836:"f5d98488",10853:"3b0bc1db",11157:"2dde3040",11200:"ed2198a4",11384:"9f5ed678",11429:"2af91218",11506:"157ca10d",11866:"4425e44f",11969:"e15634f6",12031:"313e15a2",12032:"66ecc8ea",12515:"2f0b2ea0",12646:"f90729e5",12726:"21ed4220",12791:"016fe099",13021:"ed0d68d1",13089:"21a1672f",13208:"97d77d93",13299:"56f0c0b8",13843:"06670588",13940:"7dc840d0",14140:"3e99dc47",14162:"e63e625d",14338:"e47e89bd",14602:"6556dcde",14774:"40666241",15306:"3d7f5527",15327:"1e5b4514",15889:"0dd04770",15929:"eca05f99",16061:"021fec46",16081:"d7a575ea",16192:"1325928d",16248:"c944c510",16308:"dd5e7c4e",16325:"30063e5d",16337:"d877fc5f",16341:"9f36a902",16626:"fa5a129b",16789:"90bf7b29",16939:"f454482b",16949:"f8138db0",17303:"12c5af9f",17369:"de1ed05e",17657:"ae6f3a43",17785:"19513e83",18119:"0b634ce9",18122:"232ec2fc",18181:"d0c6f754",18265:"1bc3b1c0",18340:"1435ffb3",18401:"3486e015",18500:"1a5849ab",18578:"66b71bb0",18827:"b18e9496",19109:"7fbf5188",19293:"924933ca",19393:"9f21d273",19411:"fc0f9da3",19662:"85d76069",19699:"e4a897df",20004:"04ab9f71",20118:"a4e9f651",20329:"08cb55d8",20389:"832d24b0",20515:"f0c249d3",21187:"046a31d9",21559:"e52c3929",21600:"965609b7",21672:"f632326f",22152:"1fd94ae1",22343:"777ce362",22408:"bb1d4f74",22442:"3e70e8a0",22483:"a57529b4",22600:"b2725a0c",22773:"b2fffaba",22819:"a5070b63",23014:"dd064278",23016:"5159448b",23075:"40bff4b6",23115:"d8808d0f",23626:"daeabee7",23714:"c7b4f997",23819:"5e799e8c",23907:"e18457cc",24045:"f895071c",24165:"e851a56b",24288:"2c18e2c5",24451:"9f3ba32e",24616:"9ef83aca",24697:"96149203",24944:"153f6ed3",25042:"b2e9aa9e",25207:"2715348b",25263:"ad04b75b",25308:"fb009d75",25391:"6504a3a4",25661:"0c4a2572",25729:"87901e4d",25871:"cd2abd7b",25892:"39750882",26021:"6f2911fa",26091:"d82acefa",26112:"9adc1bad",26133:"45d15565",26152:"88d6254c",26155:"ad196edd",26328:"d1c95956",26480:"5698d302",26592:"8cffca5d",27029:"87468003",27083:"26b63004",27467:"7e5d22d0",27504:"bdf89f82",27683:"09bce8e5",27826:"a79e129c",28079:"8bc27211",28104:"dba4dfc9",28107:"b182110e",28112:"0ceb896f",28153:"878e3fb5",28268:"4c91738a",28564:"08728937",28768:"f15bb6da",28922:"52716122",29571:"43c6bf2e",29853:"dca07ca3",29976:"f124f04c",30079:"db410a26",30090:"6bb3acc4",30204:"993fdd52",30563:"e71e42f4",30749:"6afa4dde",31087:"60fcd53e",31245:"babdc2af",31255:"0b96408e",31412:"49e78db0",31425:"a41716dd",31492:"32238c9a",31609:"203a75cd",31669:"fff5c4d3",31836:"a495f64d",31872:"dcd8e3b5",32102:"da3aeb1e",32131:"f5d385dd",32209:"046f49d2",32272:"f3743065",32287:"f03551f5",32470:"4e713fca",32477:"a63e1db8",32861:"61976afa",32961:"cda599bb",32968:"50344f25",33070:"3c7585ab",33109:"4e91792a",33214:"94c95c51",33261:"f8152fcf",33270:"5a8f6501",33386:"fd9903d5",33478:"2a8d33c3",33523:"0f65d685",33706:"760dfe58",33707:"e73e9c4d",33748:"a310c70b",33811:"44fb50ce",33871:"0438330d",33936:"122c037b",34062:"feee2702",34128:"79e8bd4a",34221:"34a376ce",34412:"a522a890",34463:"c075a455",34473:"3b257f04",34654:"66a382cb",34786:"c1dd0f12",34857:"473088c3",34870:"c19d6364",35160:"8b3de352",35173:"a0b8c7e5",35230:"27dba143",35401:"14211fbf",35581:"8938c37d",36154:"e88011fa",36253:"7d3bb8bc",36347:"0c95d414",36597:"161c4b49",36598:"47281b64",36645:"91ef311f",36814:"4add2787",36852:"2b06e87d",37310:"9f6a2794",37404:"47f306cf",37571:"54b988da",37586:"4db7700c",37681:"182a92bd",37690:"eaf20de6",37726:"eb640b36",37802:"03198d93",37974:"81c1129f",38090:"7b415347",38600:"f57ae988",38613:"b9470b9b",38620:"d3ac9046",38622:"5cacd5cb",38634:"d6911f6a",39013:"bc3e54e1",39038:"93abec79",39078:"2b997ce3",39221:"c323b2d6",39545:"3da08c29",39561:"b58d6d4f",39667:"34a01fb7",40081:"c39ebe7a",40249:"8edad9de",40523:"774bc312",40570:"42661218",40683:"5a49b3b3",40742:"bddddcc3",40802:"d5d082e3",40844:"934e59d1",40905:"d7ebf799",41229:"c7f60265",41399:"c86470dc",41576:"094c62f7",41880:"1cbf7e77",42018:"e9d6b94e",42183:"e7f6983b",42389:"07033df1",42420:"99331885",42656:"095b3b8b",42683:"2e62aae6",42839:"b61e6b9a",42856:"3ec1b274",43087:"8f6b9c80",43162:"2ba339d1",43169:"cddfb404",43289:"f4e81dd8",43514:"ec7806eb",43516:"d3b09cd1",43568:"887b4e27",43749:"d400061c",43943:"f6591d25",43948:"f4a1e7e4",44077:"1342c1c1",44556:"16b9aabd",45071:"d7d337d1",45087:"648aefa9",45623:"2ba7ec1a",45681:"1387f9cb",45738:"e919f586",45903:"61cea8cf",45951:"36a7acf1",46001:"8c876c24",46067:"8b206766",46069:"654cda13",46137:"61739e40",46484:"043925e5",46571:"1369e5a1",46765:"90bb14ea",47063:"c32bf918",47643:"da7f728c",48098:"16d42a97",48110:"fb81ebd0",48190:"0564b315",48724:"dc95d88d",48866:"245b73ee",48900:"85234c15",49042:"41049899",49167:"c9313e49",49232:"42817166",49294:"b21a1844",49364:"5d17beff",49409:"28b7e302",49706:"9c4a40d5",50528:"3145d628",50763:"88c901e7",50794:"3d4fcca7",51030:"1700b939",51068:"9e1c07ad",51103:"eeb497a0",51200:"6312ed08",51269:"aff98190",51308:"2b7616f2",51645:"421c5baa",51791:"6f3e9c50",51800:"6fc9f671",52072:"e294f2f0",52140:"e5d9616e",52153:"9936b562",52335:"4c31bb8c",52550:"c105a7c0",52634:"f1881166",52694:"ad350454",52891:"88332a69",53036:"c25206dd",53045:"001371e1",53320:"2c6411c3",53409:"42088890",53416:"48a4e192",53716:"88cc5a48",53754:"19d9adea",53870:"e592706d",54357:"7128cd15",54727:"c5644236",54784:"47404ddb",54838:"12833b3c",55067:"2d3e6036",55286:"935317fb",55380:"8768e609",55449:"3829b459",55526:"c5a7a776",55570:"e65427ef",55991:"9c7935b4",56107:"c868b9f9",56158:"1de1a8d3",56173:"613454a0",56176:"eff999ac",56333:"f45b5e1c",56601:"4afd7f41",56672:"fa17144e",56802:"5e693cec",56809:"11517324",57346:"5b829857",57387:"eda5e40a",57426:"d9eb81e9",57618:"9a9d8b8c",57813:"05f456c4",57871:"a5e6e7ca",57949:"7b5b608f",58133:"db85b779",58241:"7a55500f",58250:"f6267dc1",58356:"40314a6c",58465:"99bd02bb",58705:"5de3f6c8",58711:"2ba0cc67",58755:"1658c304",58764:"4d757660",58946:"20ee1bc8",58969:"a84611f8",59140:"8eaf3444",59295:"01fd9962",59388:"6502f69e",59449:"d3486a86",59682:"0c54c9f3",59783:"1b06f2b3",59911:"897a0571",59960:"8b588b7f",60042:"8557e541",60043:"bc7d1ef7",60126:"55330b3a",60491:"ca7694cf",60912:"06f64cbf",61056:"18c7814f",61076:"8657dbab",61145:"0de0b66f",61408:"2bcaea52",61601:"85fcbe9e",61674:"76db7a59",61895:"57a65008",61980:"ddddce58",62092:"68e38b41",62112:"49c06c2b",62138:"f04aa94f",62242:"72d37efd",62270:"7078756b",62809:"0ac8d4b2",62948:"4fe25a33",63184:"25be8c13",63285:"21ed8c86",63551:"6e2edf81",63588:"b145c6d4",63625:"0da217ca",64078:"057b4e43",64476:"177a9a7e",64575:"094d1181",64660:"93487afa",64705:"c409c7f6",64727:"97483e51",64818:"41ef45fc",64915:"68b11c5e",65038:"00d8914b",65150:"106c23ef",65429:"0937dc77",65441:"ee289052",65473:"4f18a5b0",65672:"85d1206d",65867:"1bd62fa3",65880:"7d2bd2e9",66061:"ef56db89",66115:"27089420",66303:"5b805328",66324:"4cfda1ac",66359:"5291d6c3",66564:"2fc01220",67098:"2310fdee",67148:"84d4b954",67228:"1a892724",67270:"fa4dbf3b",67291:"1b8e291c",67459:"2515af72",67546:"61834224",68047:"4754d9ee",68576:"364c1194",68596:"58a1c771",69061:"210d61d2",69085:"15aa0d74",69166:"7f43ae1a",69349:"987357b5",69465:"29cbeb12",69977:"bab3f656",69999:"66f31393",70180:"3f00e60e",70273:"8ab45821",70294:"dddf839a",70377:"f0f5c665",70699:"b1866e2e",70706:"125de025",70747:"bf951298",70806:"c00eecf0",70860:"c30b4781",70921:"cb0e4cae",70948:"0d7c281e",71013:"9af18522",71453:"883f562e",71457:"c48b9027",71560:"1d976fd6",72405:"df22fb5c",72406:"ffce46bf",72420:"1fccc8f5",72780:"1ad3e33d",72903:"ed171e72",72913:"82fc1d2b",72982:"a7e6d502",73171:"3840ce68",73195:"cb22ca1e",73204:"a820ef96",73235:"52844d3f",73509:"89f11c70",73607:"26788e3a",74118:"5c9d5589",74146:"5e7f8cfc",74259:"fd9307b6",74287:"e313f0fb",74356:"95b2eece",74618:"799aae52",74838:"9d43e5a3",75102:"5eeaa5e8",75397:"c54a4dc3",75566:"34b7741f",75751:"391ab311",75780:"c59f3847",75853:"0813671b",76047:"fb452f70",76108:"8b5e5c6d",76120:"1ecf4a24",76438:"485dac2b",76635:"5ffae22f",76709:"e1635d85",76786:"8e7515b2",76842:"53e87192",77007:"c0d782fb",77039:"b4738f72",77177:"766a5ee5",77401:"fb8098e9",77494:"1e46b845",77564:"ee811dc6",77630:"9e976706",77671:"e4ac185f",77778:"71e75de8",77993:"1f594987",78023:"22026e60",78187:"10fe25ca",78201:"75b2f492",78425:"edd2f17e",78678:"3914d96f",78763:"d1ce8aa5",79048:"219ce49b",79050:"533c1019",79322:"e37aa104",79323:"af46aa16",79767:"4798e011",79798:"4aef9095",79862:"af6e741f",80047:"5e693631",80097:"f63960b6",80266:"9a8c7797",80551:"0155abe3",80567:"f81bb02f",80715:"3912c01b",81044:"d85a41eb",81073:"89bc3730",81270:"fd34ab20",81367:"099e636b",81516:"1b951c93",81517:"c1fa524e",81542:"ba846158",81618:"f4dfdd5e",81620:"5eeb0bb3",81745:"588ea68c",81848:"5aa932af",81874:"2c087f6c",82175:"33ad5872",82206:"530aad0a",82362:"71721aed",82413:"fdf9adf3",82432:"495b1e37",82495:"3789cc0a",82669:"c887e54d",82756:"f02bae18",82862:"5e181739",83045:"0978e983",83371:"9cb0e2a1",83379:"be6985d0",83416:"0e6f74f0",83430:"32ddcfce",83486:"9e804101",83510:"c2bf7f11",83553:"befea8ab",83593:"9966e68f",83683:"ad6afa6d",83971:"844ece9e",84795:"c9dac3d7",84838:"1c0a8f11",84927:"5aa2d666",84933:"2012c1d5",85103:"0d71730f",85682:"d4326293",85739:"0a37970a",85775:"d545cadd",85812:"4385ea2b",85958:"a3695949",86048:"9d349249",86164:"80c3bb65",86260:"0b62f299",86547:"2676e25c",86618:"428a56b9",86650:"f9dffd51",86673:"c0f83609",86898:"713bdb49",87392:"35affe36",87683:"e22e3d6f",88353:"56cb4a3f",88464:"b93e8173",88542:"440f371e",88852:"20f40c33",89173:"67b9d17a",89732:"8fb22a48",89753:"50c39f8f",89760:"5fb01931",89838:"08219d20",89845:"321686d9",89907:"7e4d1edb",89983:"36c279f3",90046:"3d808f5b",90302:"9aa6a6ea",90310:"01511a48",90442:"5dec0793",90455:"779c5d25",91136:"539ba270",91164:"a72dbb7a",91416:"9bb5a79f",91467:"1ffa734f",91494:"0c29b5a6",91554:"f016e693",91702:"17eb0298",91857:"0712e1a0",92052:"289a7b73",92307:"6cda55c4",92554:"992c14b6",92747:"d45370cd",92763:"8b985e74",92802:"65f606f7",93120:"299a1c53",93124:"e57f7c3b",93474:"faacee4b",93637:"09c66600",93669:"ca017089",93799:"70ea7f9e",93936:"2c8c7c2c",93978:"2399542c",94075:"d9c636f0",94155:"d85b9f81",94246:"3689176f",94433:"2616a1d8",94485:"ea47c07e",94526:"782a3e33",94530:"a7a66cba",94852:"5905847c",94979:"e452e80d",95016:"757a22e6",95080:"2a8a1698",95105:"d635c91a",95309:"1fcbed53",95315:"154e01f5",95316:"659e5f34",95328:"ef2bc5d7",95392:"12bc6870",95520:"2424eaf9",95656:"ccdbccca",95843:"bdb0480e",95851:"def3668a",95966:"9cb117e2",96321:"dc561000",96443:"f4eaf4fb",96529:"eacfa9b6",96553:"c269352a",96751:"bed8de93",96848:"d9134261",97185:"88880b50",97220:"cb228af3",97239:"ac5efb4b",97446:"272c9335",97555:"f574eb2b",97642:"ef13c6f5",97692:"04643f2f",97766:"b450dcbe",97884:"072a661a",97988:"bb8569f8",98037:"bf50b79f",98206:"8c08998d",98291:"9d28d360",98581:"514a4faa",98601:"6fee1eeb",98808:"533da404",99222:"2e271426",99377:"59171dd5",99441:"cac2289d",99746:"62bfd2c6",99784:"db92231d",99917:"bd00635d"}[e]+".js",r.miniCssF=e=>{},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,b)=>Object.prototype.hasOwnProperty.call(e,b),f={},c="website:",r.l=(e,b,a,d)=>{if(f[e])f[e].push(b);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(s);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),b)return b(a)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/",r.gca=function(e){return e={17896441:"18401",25778245:"63625",45113257:"50763",57176175:"73204",58082863:"76047",66527541:"83379",67158670:"29571",70245927:"23907",72207194:"40249",84555378:"75780",89522323:"3299",90571119:"8248",92667337:"39078",96225825:"64818","8102b5ac":"15","19e8550d":"36",d8ac4d11:"353","31dd2b75":"359","086d5e3f":"536",d16572ac:"1038","22290b7c":"1316",f933782b:"2075","0b9c6e63":"2123","04768086":"2450",dcb5266f:"2647",da84cc0d:"2652",ce9e2dcf:"2932","0f3f8c85":"2960","1ef3c4cb":"3210",a5f90f12:"3233","94e4428c":"3262",c8855521:"3302","1626930f":"3640",da4a45a6:"3735","97ff1006":"3926",c0390a80:"4047","1cb009e2":"4105","6947aa75":"4113","548a188b":"4432","89cbeac6":"4736","13f29f79":"4886","0519d6ff":"4946","17e08b0c":"5005","5d738820":"5148","01627567":"5415",a5b5dcea:"5715",f8b6f1ce:"5874","30de4b0c":"5886","78d8c6ce":"6149",b2f441e1:"6182","97cf841f":"6249","86bd704e":"6255","442d4849":"6368",f7c05237:"6428","95c50459":"6507",ae9f1acc:"6524","9f84576c":"6595",bff552dd:"6669","53d6c163":"6988",c0873f99:"7180","3c851dde":"7202","19d98c6a":"7292",af25c48f:"7402",bf59ca81:"7420",fc009b8f:"7545","08958cc8":"7727",e897f185:"8250","6187a22c":"8387","3683234c":"8641","28f896bb":"8682",b534254a:"8711","3384d06b":"8725","5c9389cb":"8765","341034ab":"8853","7ce1a762":"8919","31bb26c2":"8960","54213aa1":"9045",f7f2e981:"9197","4c43497a":"9362","3b084a86":"9371","8fce5129":"9508","57d3a897":"9591","5e95c892":"9647",e80a80ce:"9669","605a9692":"9763","284c0406":"9768",d3bbc5fd:"9790",d8538008:"9895","197162c9":"10325","7d04a98b":"10394","3cbcee45":"10467","3dd193dd":"10571","203393bb":"10783","5188416b":"10836",ec5ce2a8:"10853","178e95a2":"11157","564cd4c0":"11200","66d67008":"11384","61e9bb6e":"11429","730062b1":"11506",b8c87182:"11866",a40e4d8d:"11969",f17eea78:"12031",f31b0025:"12032",d1187d43:"12515","354854e1":"12646",c95b781b:"12726",ebb6a828:"12791","6875b121":"13021","1a8d89d5":"13089","8f3eca0e":"13208","5a396677":"13299","6bf8e8e6":"13843",db9c64ed:"13940","20d575d4":"14140","0b0c644f":"14162","65d34724":"14338","28164c5f":"14602",a521008d:"14774","0f214f11":"15306",d69b5ce4:"15327",d4751fcb:"15889",b99ad014:"15929","7b6b8da6":"16061","04f93611":"16081",b8d9badc:"16192","0e6e7f1a":"16248","92ebcf1c":"16308","959f8bcb":"16325","495df45a":"16337",a617c0b8:"16341",ce784664:"16626",eb39d40e:"16939",a1c02285:"16949",d3b31caa:"17303",c52cb584:"17369","30b0614b":"17657",be46464e:"17785","6f2f0c4c":"18119",f63c7767:"18122",d15d046b:"18181","660f1f01":"18265",c1d1596b:"18340","5652c446":"18500",de4cf88e:"18578","5d439d21":"18827","08b63e68":"19109","7ea12187":"19293",fea909d2:"19393","53c63e3f":"19411",d443b36e:"19662","0dcca658":"19699",f9faa05a:"20118","26eafd15":"20329","2457c0ef":"20389","94abfae6":"20515",a65c2029:"21187","81215a04":"21559",e0250fe6:"21600","4fd3fe56":"21672","65e91a71":"22152",fa9bdbac:"22343",d4cdbb95:"22408",f0045c87:"22442",fd2b2a05:"22483","80348dae":"22600",a75efafa:"22773",aea8cccb:"22819","0565d9f4":"23014",d063fe9f:"23016",b8a75ff1:"23075","85ff2641":"23115","098cffed":"23626","0203cbc2":"23714","5cf764b1":"23819",a7022165:"24045",dfc96154:"24165",deaca5dd:"24288","2774336d":"24451","528dfaf3":"24616","8daebb13":"24697",e718b7e6:"24944",acc1e0c7:"25042","3d7f4be7":"25207",b6a19a2b:"25263",aa222e6d:"25308","121a060a":"25391","288b5fa4":"25661","9879f36f":"25729","1e0f4596":"25871",d3377450:"25892","5a3f9071":"26021",fadff26c:"26091","6dd3a2f1":"26112",deedc2a8:"26133",a6860501:"26152",e951bf48:"26155",fc3648c4:"26328",c6405911:"26480","83f9573b":"26592","3bfd86a6":"27029","761be9ac":"27083","1514c2db":"27467",b06b747e:"27504",c3b79105:"27683",c9dad6db:"27826","52045c4e":"28079","92cca7ce":"28104","174d46b8":"28107","0810aeb4":"28112","988211ef":"28153",add37b26:"28268","8199a7c1":"28564",c452b0b7:"28768","203f692a":"28922","02ad889d":"29853",e9498790:"29976",cd8a45a6:"30079","45af7cbe":"30090","621f1fa8":"30204",cc3eb85c:"30563","2c019423":"30749","830bde22":"31087",c65b3d63:"31245","8d971cbb":"31255","4bbb5eb1":"31412","6c36aa60":"31425",fb0baf48:"31492","529f7014":"31609","8ad1c52d":"31669","2dc84aaf":"31836","3e90f77d":"31872","39e6d37f":"32102","9e9f5dce":"32131",c0a49dd7:"32209","3deac311":"32272","15d1a8b2":"32287",e50d8128:"32470",f82ec024:"32477","3dd644e6":"32861",d5f4f3d4:"32961","293bee56":"32968",e75f0651:"33070","284fa5fb":"33109","8b190d09":"33214",da845f06:"33261",d7cf88d1:"33270",cd72eb9e:"33386","1f445f4e":"33478","3d1791fa":"33523",b1c24be0:"33706",a05f508e:"33707","6bb5aff3":"33748","7fc5f702":"33811",a6e9442a:"33871","13cf577a":"33936","1f87d76b":"34062","3110a528":"34128",cd9d94be:"34221",df632275:"34412",db881351:"34463",b9526204:"34473","024f5110":"34654","0448914c":"34786","6dc7dc4a":"34857",a9bc95bb:"34870","6d7a4f7b":"35160",afe6f65e:"35173",c7eff138:"35230","8e403b22":"35401",d28f8723:"35581","09920c24":"36154","83debc9b":"36253","1072df95":"36347","13f68f62":"36597","5ba37eca":"36598",a7fed74b:"36645",ae8ddf81:"36814",ce30221e:"36852",c7277ad6:"37310",be6859b2:"37404","067a7414":"37571","229fac93":"37586",f03fab11:"37681","96345a43":"37690","92d75d1c":"37726",facbb56d:"37802","6e3154f7":"37974","77816f9e":"38090",a633adf5:"38600","98952d49":"38613","58597cf2":"38620",cf736a7b:"38622",cacb3d65:"38634","08ea7f98":"39013","6388662f":"39038",f6d558f6:"39221","89a0a60a":"39545","3f99eb33":"39561","29295ff3":"39667",f769181d:"40081","7c3e0a90":"40523","4ff49acf":"40570","925455b6":"40683",b695efd2:"40742","2b4143dc":"40802","915fdef3":"40844",b0f84f31:"40905","2f7b0683":"41229","2757bf0a":"41399","00a17dd8":"41576",e74fe2a7:"41880","278ee235":"42018","0b9e986a":"42183","93c6800a":"42389",ac710fda:"42420","45a2a32a":"42656",c928173c:"42683","15abff36":"42839","33aa855a":"42856","6d78f76d":"43087","2f626edb":"43162",ed3bee84:"43169","91d25720":"43289","88ef04a7":"43514","2b10040d":"43516","99e0db6b":"43568",b3a8e371:"43749",c08d65fc:"43948","1d098224":"44077",c25457d3:"44556",dbb33cef:"45071",f6435ed1:"45087","139f73fe":"45623","1e6876ab":"45681",cfabf7e9:"45738","98d35d14":"45903","25e935c4":"45951","56be068b":"46001",c78cff6c:"46067",d0cc8b4f:"46069","45f98d44":"46137",a77f4c3b:"46484","78e4148a":"46571",bb9f8df1:"46765","22d92bf3":"47063","0f66ed5f":"47643",e0cfa6fb:"48098","93e59a16":"48110","6abe350e":"48190","0dc95480":"48724","8b608a5c":"48866",afee9407:"48900","43c45fbd":"49042","883b80f5":"49167","3f297b93":"49232","1a7d2b73":"49294","85f02d4b":"49364",daba4570:"49409","29a3d0d6":"49706","34af491e":"50528",c140d46c:"50794","34d88677":"51030",bcca5012:"51068","1d314591":"51103",bebf10ba:"51200","958e6623":"51269",da3e9658:"51308","244eac16":"51645","0131ba20":"51791","54b2a591":"51800","842b9c6e":"52072",a7cd363d:"52140",d4e92657:"52153",fd8e5d2f:"52335","641fb5ab":"52550",c4f5d8e4:"52634","8aa5df97":"52694",afbdcc09:"52891","2999c86a":"53036",f1bf9ead:"53045","5c518724":"53320",c70aa1ed:"53409","9523dcb5":"53416","5c9831a7":"53716",bb9c3ed9:"53754","4d53942d":"53870","1dea1673":"54357",f5272822:"54727","075bf599":"54784","8daf2cfc":"54838",ca3ac135:"55067","474cf6da":"55286",b2399376:"55380","56f4e815":"55449",cff1c286:"55526","43a73887":"55570",c3dff334:"55991","5166b893":"56107","17c1bf74":"56158",abd6c138:"56173",bd9c2ce3:"56176","3e76e7e2":"56333",ca87bd6e:"56601",a6514927:"56672","9e33764b":"56802","9eea1548":"56809","548f5e59":"57346",be7a0dbe:"57387",b9bde1e9:"57426","649b7061":"57618","1dcb712d":"57813","33daa5c8":"57871","5c9ba668":"57949",c0bd6a4b:"58133","1394ac74":"58241",e5e048c5:"58250","64a11ff0":"58356",e59213c0:"58465",c8ec7de9:"58705",ac22c4de:"58711","829baac4":"58755","8f5ca9a8":"58764","813c57df":"58946","5603f239":"58969","79b08c73":"59140",a3542ba4:"59295","6454a05b":"59388","92b7280d":"59449",de8ad7db:"59682","33031c96":"59783","484362c2":"59911","116ce0e0":"59960","34672d36":"60042","073760cf":"60043",b16939e2:"60126",e7752ddb:"60491",a649354c:"60912","3951a3d5":"61056",fafbe599:"61076",dbbae471:"61145","53ba98a8":"61408",d872d333:"61601","3dbf3764":"61674",a4a95510:"61895","617e9601":"61980",d6e66bbb:"62092","333ae3de":"62112","1a4e3797":"62138","532b25e9":"62242","6069883e":"62270","5df7ef96":"62809","8d20ce23":"62948",b9d8091f:"63184","66a5fdbd":"63285","52e54cbf":"63551",debcf1ca:"63588",bd0b3be5:"64078",a3cf9e9a:"64476","1cb70b87":"64575","1582f434":"64660",e2e6c14f:"64705","58a729ec":"64727","63d0f0e0":"64915","7c4de6ae":"65038","0976f607":"65150","1c9209f4":"65429",f14a91aa:"65441",a008f403:"65473","9f72f8ad":"65672","02b8ff39":"65867","21fffddb":"65880","1f391b9e":"66061","3484cec4":"66115","3c15e784":"66303","26c8b3d3":"66324","34ee1a85":"66359",c512952f:"66564",a7bd4aaa:"67098",c07122e1:"67148",e3e676f7:"67228","4d985d8a":"67270","67b585cb":"67291",a38fce19:"67459",e2561c05:"67546","1f5d5f87":"68047",b5b50fa2:"68576",e8ce8f9a:"68596","5ae3e876":"69061","36f1c627":"69085","48b422ba":"69166","5adad896":"69349",a65edd96:"69465","3bfb82cf":"69977",ead72281:"69999",bff0400e:"70180",fb133e19:"70273",c3a3eb3c:"70294",b780b841:"70377",b6ccfdca:"70699","09fd6bc3":"70706","49077a33":"70747","0ffa903f":"70806",b31cf73f:"70860","03ef24a9":"70921",a8ec943f:"70948","6b6cd41d":"71013",e15bcb33:"71453",aa392378:"71457","32947c92":"71560","1fec1075":"72405",bce28ad4:"72406",b027356b:"72420","4c517393":"72780",fd3398f1:"72903","0b7eabf3":"72913","2e1bbbbe":"72982","07de990d":"73171",a8913000:"73195",a2c14f61:"73235",c56532b8:"73509","579c441c":"73607","9ce8caa5":"74118","9aa2d1d3":"74146","27e1f4b3":"74259","719705af":"74287","6a4d9186":"74356","5877df2d":"74618","23b73747":"74838","6a858f16":"75102",c2467954:"75397",c9bc13ce:"75566","9a6d52da":"75751",cd78c8cb:"75853",d808852d:"76108","8d2ab356":"76120","9a3fbf2b":"76438","13b56c59":"76635","76634d71":"76709",aea5966f:"76786",e62294b1:"76842","9f2f7e81":"77007",d6ce4507:"77039","253fbb59":"77177","68bfee64":"77401","24bb3679":"77494","1b5b94bb":"77564","2cdd7720":"77630","8a525f09":"77671","879025b0":"77778","3826374e":"77993","4bbb7f4a":"78023",d77c210f:"78187",a2c1c70a:"78201",b198df35:"78425",dc8253a3:"78678",d84189a7:"78763",a94703ab:"79048","8bc280ca":"79050","5345c07d":"79322","6175b9e3":"79323",f00baad2:"79767","9707d709":"79798","17c79707":"79862","447f169e":"80047","6a14e4a6":"80097",b94a2346:"80266","26b9516c":"80551","62e81aa6":"80567",c1be4069:"80715",f12e5031:"81044","785bbfee":"81073","0780ab69":"81270","131f5b8d":"81367","98bfff7a":"81516","91fda863":"81517","1a38f637":"81542","3f50cac0":"81618","3619f683":"81745","39455ce1":"81848",efa2f5a1:"81874",ed701816:"82175","392e1a00":"82206","5eab74b1":"82362",cf5a4cff:"82413","5b270591":"82432","3259ac92":"82495",df6ab4bc:"82669",d643cbaf:"82756","47b8b18c":"82862","0b0ea5f1":"83045",b56a9dad:"83371","48c9bcee":"83416",e36c389f:"83430","6561ff8a":"83486","8f69be8c":"83510","31c3b644":"83553","2432bf2e":"83593","4293d558":"83683","1e32b83f":"84795","4e1badf8":"84838","2acaeb1a":"84927","481cf853":"84933",e8b823ec:"85103",a9215700:"85682","4cd336cf":"85739",e127b1c1:"85775","12af6885":"85812",e7c63a3c:"85958",e0ea7e73:"86048",f3be527a:"86164","04f00c7c":"86260","00aed75b":"86547","5e906dfd":"86618",fc9493b5:"86650","0a87ba36":"86673","2768bd3e":"86898",e6aabe98:"87392","0734b534":"87683","51392a58":"88353","97597cd7":"88464",dadaae3f:"88542",e3883bac:"88852","04f5229b":"89173","330bcee0":"89732","427c3667":"89753",cb2f5335:"89760","1f466884":"89838","2a3c922d":"89845","506691da":"89907","34003c72":"89983",bd59b609:"90046","8627d2ff":"90302",e42b3d9d:"90310",cbc12d17:"90442","6db854fa":"90455",ed0bdba3:"91136","477a37df":"91164","59ca9e65":"91416","92a19523":"91467","12c7c638":"91494",d9f7e22f:"91554","69994b68":"91702","8c9cae58":"91857",c610c5a8:"92052",aa2738c3:"92307",a8d4abbe:"92554","42f05cce":"92747","863d209f":"92763","055b225f":"92802","8e7559bb":"93120","42e8cbb3":"93124",c3efefe4:"93474",e91b02be:"93637",a252b33f:"93669","352379af":"93799","850ece50":"93936","0fe0ccc7":"93978","4171ae7f":"94075","8a4daa3b":"94155","872379cf":"94246",efe1d13a:"94433","1df0bf2a":"94485","9746ca7b":"94526","6f0123ef":"94530","2308dcf3":"94852","8ac907f8":"94979","8e1bf126":"95016",a3304b48:"95080","4356428f":"95105","5bd52431":"95309",f3634bd2:"95315",e30960a7:"95316","8c6b97bf":"95328","74f9148b":"95392","026b0f1d":"95520",d8aa108f:"95656","4677217b":"95843","648a3482":"95851","15659d54":"95966","30fe064f":"96321","6540f7c7":"96443","2fbebc4d":"96529","70f17b6a":"96553","559ca816":"96751","58fe75b9":"96848","47d3ce37":"97185","1094d3ac":"97220","259c64e2":"97239","9754eb65":"97446",e6f1bbf8:"97555","432ba8c0":"97642","2e7b1ecd":"97692","4be882fd":"97766","33b8ac1d":"97884",af30bbb1:"97988","8745e5b0":"98037","0cd5b1a7":"98206",ec7ac759:"98291","935f2afb":"98581","62cdd780":"98601",d248ca85:"98808","794b0494":"99222",cb5e20e2:"99377","9e98946b":"99441","751b68b4":"99746","82d2d99a":"99784","8a6e3c59":"99917"}[e]||e,r.p+r.u(e)},(()=>{var e={45354:0,71869:0};r.f.j=(b,a)=>{var f=r.o(e,b)?e[b]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(45354|71869)$/.test(b))e[b]=0;else{var c=new Promise(((a,c)=>f=e[b]=[a,c]));a.push(f[2]=c);var d=r.p+r.u(b),t=new Error;r.l(d,(a=>{if(r.o(e,b)&&(0!==(f=e[b])&&(e[b]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),d=a&&a.target&&a.target.src;t.message="Loading chunk "+b+" failed.\n("+c+": "+d+")",t.name="ChunkLoadError",t.type=c,t.request=d,f[1](t)}}),"chunk-"+b,b)}},r.O.j=b=>0===e[b];var b=(b,a)=>{var f,c,d=a[0],t=a[1],o=a[2],n=0;if(d.some((b=>0!==e[b]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(b&&b(a);n{"use strict";var e,b,a,f,c,d={},t={};function r(e){var b=t[e];if(void 0!==b)return b.exports;var a=t[e]={id:e,loaded:!1,exports:{}};return d[e].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=d,r.c=t,e=[],r.O=(b,a,f,c)=>{if(!a){var d=1/0;for(i=0;i=c)&&Object.keys(r.O).every((e=>r.O[e](a[o])))?a.splice(o--,1):(t=!1,c0&&e[i-1][2]>c;i--)e[i]=e[i-1];e[i]=[a,f,c]},r.n=e=>{var b=e&&e.__esModule?()=>e.default:()=>e;return r.d(b,{a:b}),b},a=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,r.t=function(e,f){if(1&f&&(e=this(e)),8&f)return e;if("object"==typeof e&&e){if(4&f&&e.__esModule)return e;if(16&f&&"function"==typeof e.then)return e}var c=Object.create(null);r.r(c);var d={};b=b||[null,a({}),a([]),a(a)];for(var t=2&f&&e;"object"==typeof t&&!~b.indexOf(t);t=a(t))Object.getOwnPropertyNames(t).forEach((b=>d[b]=()=>e[b]));return d.default=()=>e,r.d(c,d),c},r.d=(e,b)=>{for(var a in b)r.o(b,a)&&!r.o(e,a)&&Object.defineProperty(e,a,{enumerable:!0,get:b[a]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((b,a)=>(r.f[a](e,b),b)),[])),r.u=e=>"assets/js/"+({15:"8102b5ac",36:"19e8550d",353:"d8ac4d11",359:"31dd2b75",536:"086d5e3f",1038:"d16572ac",1316:"22290b7c",2075:"f933782b",2123:"0b9c6e63",2450:"04768086",2647:"dcb5266f",2652:"da84cc0d",2932:"ce9e2dcf",2960:"0f3f8c85",3210:"1ef3c4cb",3233:"a5f90f12",3262:"94e4428c",3299:"89522323",3302:"c8855521",3640:"1626930f",3735:"da4a45a6",3926:"97ff1006",4047:"c0390a80",4105:"1cb009e2",4113:"6947aa75",4432:"548a188b",4736:"89cbeac6",4886:"13f29f79",4946:"0519d6ff",5005:"17e08b0c",5148:"5d738820",5415:"01627567",5715:"a5b5dcea",5874:"f8b6f1ce",5886:"30de4b0c",6149:"78d8c6ce",6182:"b2f441e1",6249:"97cf841f",6255:"86bd704e",6368:"442d4849",6428:"f7c05237",6507:"95c50459",6524:"ae9f1acc",6595:"9f84576c",6669:"bff552dd",6988:"53d6c163",7180:"c0873f99",7202:"3c851dde",7292:"19d98c6a",7402:"af25c48f",7420:"bf59ca81",7545:"fc009b8f",7727:"08958cc8",8248:"90571119",8250:"e897f185",8387:"6187a22c",8641:"3683234c",8682:"28f896bb",8711:"b534254a",8725:"3384d06b",8765:"5c9389cb",8853:"341034ab",8919:"7ce1a762",8960:"31bb26c2",9045:"54213aa1",9197:"f7f2e981",9362:"4c43497a",9371:"3b084a86",9508:"8fce5129",9591:"57d3a897",9647:"5e95c892",9669:"e80a80ce",9763:"605a9692",9768:"284c0406",9790:"d3bbc5fd",9895:"d8538008",10325:"197162c9",10394:"7d04a98b",10467:"3cbcee45",10571:"3dd193dd",10783:"203393bb",10836:"5188416b",10853:"ec5ce2a8",11157:"178e95a2",11200:"564cd4c0",11384:"66d67008",11429:"61e9bb6e",11506:"730062b1",11866:"b8c87182",11969:"a40e4d8d",12031:"f17eea78",12032:"f31b0025",12515:"d1187d43",12646:"354854e1",12726:"c95b781b",12791:"ebb6a828",13021:"6875b121",13089:"1a8d89d5",13208:"8f3eca0e",13299:"5a396677",13843:"6bf8e8e6",13940:"db9c64ed",14140:"20d575d4",14162:"0b0c644f",14338:"65d34724",14602:"28164c5f",14774:"a521008d",15306:"0f214f11",15327:"d69b5ce4",15889:"d4751fcb",15929:"b99ad014",16061:"7b6b8da6",16081:"04f93611",16192:"b8d9badc",16248:"0e6e7f1a",16308:"92ebcf1c",16325:"959f8bcb",16337:"495df45a",16341:"a617c0b8",16626:"ce784664",16939:"eb39d40e",16949:"a1c02285",17303:"d3b31caa",17369:"c52cb584",17657:"30b0614b",17785:"be46464e",18119:"6f2f0c4c",18122:"f63c7767",18181:"d15d046b",18265:"660f1f01",18340:"c1d1596b",18401:"17896441",18500:"5652c446",18578:"de4cf88e",18827:"5d439d21",19109:"08b63e68",19293:"7ea12187",19393:"fea909d2",19411:"53c63e3f",19662:"d443b36e",19699:"0dcca658",20118:"f9faa05a",20329:"26eafd15",20389:"2457c0ef",20515:"94abfae6",21187:"a65c2029",21559:"81215a04",21600:"e0250fe6",21672:"4fd3fe56",22152:"65e91a71",22343:"fa9bdbac",22408:"d4cdbb95",22442:"f0045c87",22483:"fd2b2a05",22600:"80348dae",22773:"a75efafa",22819:"aea8cccb",23014:"0565d9f4",23016:"d063fe9f",23075:"b8a75ff1",23115:"85ff2641",23626:"098cffed",23714:"0203cbc2",23819:"5cf764b1",23907:"70245927",24045:"a7022165",24165:"dfc96154",24288:"deaca5dd",24451:"2774336d",24616:"528dfaf3",24697:"8daebb13",24944:"e718b7e6",25042:"acc1e0c7",25207:"3d7f4be7",25263:"b6a19a2b",25308:"aa222e6d",25391:"121a060a",25661:"288b5fa4",25729:"9879f36f",25871:"1e0f4596",25892:"d3377450",26021:"5a3f9071",26091:"fadff26c",26112:"6dd3a2f1",26133:"deedc2a8",26152:"a6860501",26155:"e951bf48",26328:"fc3648c4",26480:"c6405911",26592:"83f9573b",27029:"3bfd86a6",27083:"761be9ac",27467:"1514c2db",27504:"b06b747e",27683:"c3b79105",27826:"c9dad6db",28079:"52045c4e",28104:"92cca7ce",28107:"174d46b8",28112:"0810aeb4",28153:"988211ef",28268:"add37b26",28564:"8199a7c1",28768:"c452b0b7",28922:"203f692a",29571:"67158670",29853:"02ad889d",29976:"e9498790",30079:"cd8a45a6",30090:"45af7cbe",30204:"621f1fa8",30563:"cc3eb85c",30749:"2c019423",31087:"830bde22",31245:"c65b3d63",31255:"8d971cbb",31412:"4bbb5eb1",31425:"6c36aa60",31492:"fb0baf48",31609:"529f7014",31669:"8ad1c52d",31836:"2dc84aaf",31872:"3e90f77d",32102:"39e6d37f",32131:"9e9f5dce",32209:"c0a49dd7",32272:"3deac311",32287:"15d1a8b2",32470:"e50d8128",32477:"f82ec024",32861:"3dd644e6",32961:"d5f4f3d4",32968:"293bee56",33070:"e75f0651",33109:"284fa5fb",33214:"8b190d09",33261:"da845f06",33270:"d7cf88d1",33386:"cd72eb9e",33478:"1f445f4e",33523:"3d1791fa",33706:"b1c24be0",33707:"a05f508e",33748:"6bb5aff3",33811:"7fc5f702",33871:"a6e9442a",33936:"13cf577a",34062:"1f87d76b",34128:"3110a528",34221:"cd9d94be",34412:"df632275",34463:"db881351",34473:"b9526204",34654:"024f5110",34786:"0448914c",34857:"6dc7dc4a",34870:"a9bc95bb",35160:"6d7a4f7b",35173:"afe6f65e",35230:"c7eff138",35401:"8e403b22",35581:"d28f8723",36154:"09920c24",36253:"83debc9b",36347:"1072df95",36597:"13f68f62",36598:"5ba37eca",36645:"a7fed74b",36814:"ae8ddf81",36852:"ce30221e",37310:"c7277ad6",37404:"be6859b2",37571:"067a7414",37586:"229fac93",37681:"f03fab11",37690:"96345a43",37726:"92d75d1c",37802:"facbb56d",37974:"6e3154f7",38090:"77816f9e",38600:"a633adf5",38613:"98952d49",38620:"58597cf2",38622:"cf736a7b",38634:"cacb3d65",39013:"08ea7f98",39038:"6388662f",39078:"92667337",39221:"f6d558f6",39545:"89a0a60a",39561:"3f99eb33",39667:"29295ff3",40081:"f769181d",40249:"72207194",40523:"7c3e0a90",40570:"4ff49acf",40683:"925455b6",40742:"b695efd2",40802:"2b4143dc",40844:"915fdef3",40905:"b0f84f31",41229:"2f7b0683",41399:"2757bf0a",41576:"00a17dd8",41880:"e74fe2a7",42018:"278ee235",42183:"0b9e986a",42389:"93c6800a",42420:"ac710fda",42656:"45a2a32a",42683:"c928173c",42839:"15abff36",42856:"33aa855a",43087:"6d78f76d",43162:"2f626edb",43169:"ed3bee84",43289:"91d25720",43514:"88ef04a7",43516:"2b10040d",43568:"99e0db6b",43749:"b3a8e371",43948:"c08d65fc",44077:"1d098224",44556:"c25457d3",45071:"dbb33cef",45087:"f6435ed1",45623:"139f73fe",45681:"1e6876ab",45738:"cfabf7e9",45903:"98d35d14",45951:"25e935c4",46001:"56be068b",46067:"c78cff6c",46069:"d0cc8b4f",46137:"45f98d44",46484:"a77f4c3b",46571:"78e4148a",46765:"bb9f8df1",47063:"22d92bf3",47643:"0f66ed5f",48098:"e0cfa6fb",48110:"93e59a16",48190:"6abe350e",48724:"0dc95480",48866:"8b608a5c",48900:"afee9407",49042:"43c45fbd",49167:"883b80f5",49232:"3f297b93",49294:"1a7d2b73",49364:"85f02d4b",49409:"daba4570",49706:"29a3d0d6",50528:"34af491e",50763:"45113257",50794:"c140d46c",51030:"34d88677",51068:"bcca5012",51103:"1d314591",51200:"bebf10ba",51269:"958e6623",51308:"da3e9658",51645:"244eac16",51791:"0131ba20",51800:"54b2a591",52072:"842b9c6e",52140:"a7cd363d",52153:"d4e92657",52335:"fd8e5d2f",52550:"641fb5ab",52634:"c4f5d8e4",52694:"8aa5df97",52891:"afbdcc09",53036:"2999c86a",53045:"f1bf9ead",53320:"5c518724",53409:"c70aa1ed",53416:"9523dcb5",53716:"5c9831a7",53754:"bb9c3ed9",53870:"4d53942d",54357:"1dea1673",54727:"f5272822",54784:"075bf599",54838:"8daf2cfc",55067:"ca3ac135",55286:"474cf6da",55380:"b2399376",55449:"56f4e815",55526:"cff1c286",55570:"43a73887",55991:"c3dff334",56107:"5166b893",56158:"17c1bf74",56173:"abd6c138",56176:"bd9c2ce3",56333:"3e76e7e2",56601:"ca87bd6e",56672:"a6514927",56802:"9e33764b",56809:"9eea1548",57346:"548f5e59",57387:"be7a0dbe",57426:"b9bde1e9",57618:"649b7061",57813:"1dcb712d",57871:"33daa5c8",57949:"5c9ba668",58133:"c0bd6a4b",58241:"1394ac74",58250:"e5e048c5",58356:"64a11ff0",58465:"e59213c0",58705:"c8ec7de9",58711:"ac22c4de",58755:"829baac4",58764:"8f5ca9a8",58946:"813c57df",58969:"5603f239",59140:"79b08c73",59295:"a3542ba4",59388:"6454a05b",59449:"92b7280d",59682:"de8ad7db",59783:"33031c96",59911:"484362c2",59960:"116ce0e0",60042:"34672d36",60043:"073760cf",60126:"b16939e2",60491:"e7752ddb",60912:"a649354c",61056:"3951a3d5",61076:"fafbe599",61145:"dbbae471",61408:"53ba98a8",61601:"d872d333",61674:"3dbf3764",61895:"a4a95510",61980:"617e9601",62092:"d6e66bbb",62112:"333ae3de",62138:"1a4e3797",62242:"532b25e9",62270:"6069883e",62809:"5df7ef96",62948:"8d20ce23",63184:"b9d8091f",63285:"66a5fdbd",63551:"52e54cbf",63588:"debcf1ca",63625:"25778245",64078:"bd0b3be5",64476:"a3cf9e9a",64575:"1cb70b87",64660:"1582f434",64705:"e2e6c14f",64727:"58a729ec",64818:"96225825",64915:"63d0f0e0",65038:"7c4de6ae",65150:"0976f607",65429:"1c9209f4",65441:"f14a91aa",65473:"a008f403",65672:"9f72f8ad",65867:"02b8ff39",65880:"21fffddb",66061:"1f391b9e",66115:"3484cec4",66303:"3c15e784",66324:"26c8b3d3",66359:"34ee1a85",66564:"c512952f",67098:"a7bd4aaa",67148:"c07122e1",67228:"e3e676f7",67270:"4d985d8a",67291:"67b585cb",67459:"a38fce19",67546:"e2561c05",68047:"1f5d5f87",68576:"b5b50fa2",68596:"e8ce8f9a",69061:"5ae3e876",69085:"36f1c627",69166:"48b422ba",69349:"5adad896",69465:"a65edd96",69977:"3bfb82cf",69999:"ead72281",70180:"bff0400e",70273:"fb133e19",70294:"c3a3eb3c",70377:"b780b841",70699:"b6ccfdca",70706:"09fd6bc3",70747:"49077a33",70806:"0ffa903f",70860:"b31cf73f",70921:"03ef24a9",70948:"a8ec943f",71013:"6b6cd41d",71453:"e15bcb33",71457:"aa392378",71560:"32947c92",72405:"1fec1075",72406:"bce28ad4",72420:"b027356b",72780:"4c517393",72903:"fd3398f1",72913:"0b7eabf3",72982:"2e1bbbbe",73171:"07de990d",73195:"a8913000",73204:"57176175",73235:"a2c14f61",73509:"c56532b8",73607:"579c441c",74118:"9ce8caa5",74146:"9aa2d1d3",74259:"27e1f4b3",74287:"719705af",74356:"6a4d9186",74618:"5877df2d",74838:"23b73747",75102:"6a858f16",75397:"c2467954",75566:"c9bc13ce",75751:"9a6d52da",75780:"84555378",75853:"cd78c8cb",76047:"58082863",76108:"d808852d",76120:"8d2ab356",76438:"9a3fbf2b",76635:"13b56c59",76709:"76634d71",76786:"aea5966f",76842:"e62294b1",77007:"9f2f7e81",77039:"d6ce4507",77177:"253fbb59",77401:"68bfee64",77494:"24bb3679",77564:"1b5b94bb",77630:"2cdd7720",77671:"8a525f09",77778:"879025b0",77993:"3826374e",78023:"4bbb7f4a",78187:"d77c210f",78201:"a2c1c70a",78425:"b198df35",78678:"dc8253a3",78763:"d84189a7",79048:"a94703ab",79050:"8bc280ca",79322:"5345c07d",79323:"6175b9e3",79767:"f00baad2",79798:"9707d709",79862:"17c79707",80047:"447f169e",80097:"6a14e4a6",80266:"b94a2346",80551:"26b9516c",80567:"62e81aa6",80715:"c1be4069",81044:"f12e5031",81073:"785bbfee",81270:"0780ab69",81367:"131f5b8d",81516:"98bfff7a",81517:"91fda863",81542:"1a38f637",81618:"3f50cac0",81745:"3619f683",81848:"39455ce1",81874:"efa2f5a1",82175:"ed701816",82206:"392e1a00",82362:"5eab74b1",82413:"cf5a4cff",82432:"5b270591",82495:"3259ac92",82669:"df6ab4bc",82756:"d643cbaf",82862:"47b8b18c",83045:"0b0ea5f1",83371:"b56a9dad",83379:"66527541",83416:"48c9bcee",83430:"e36c389f",83486:"6561ff8a",83510:"8f69be8c",83553:"31c3b644",83593:"2432bf2e",83683:"4293d558",84795:"1e32b83f",84838:"4e1badf8",84927:"2acaeb1a",84933:"481cf853",85103:"e8b823ec",85682:"a9215700",85739:"4cd336cf",85775:"e127b1c1",85812:"12af6885",85958:"e7c63a3c",86048:"e0ea7e73",86164:"f3be527a",86260:"04f00c7c",86547:"00aed75b",86618:"5e906dfd",86650:"fc9493b5",86673:"0a87ba36",86898:"2768bd3e",87392:"e6aabe98",87683:"0734b534",88353:"51392a58",88464:"97597cd7",88542:"dadaae3f",88852:"e3883bac",89173:"04f5229b",89732:"330bcee0",89753:"427c3667",89760:"cb2f5335",89838:"1f466884",89845:"2a3c922d",89907:"506691da",89983:"34003c72",90046:"bd59b609",90302:"8627d2ff",90310:"e42b3d9d",90442:"cbc12d17",90455:"6db854fa",91136:"ed0bdba3",91164:"477a37df",91416:"59ca9e65",91467:"92a19523",91494:"12c7c638",91554:"d9f7e22f",91702:"69994b68",91857:"8c9cae58",92052:"c610c5a8",92307:"aa2738c3",92554:"a8d4abbe",92747:"42f05cce",92763:"863d209f",92802:"055b225f",93120:"8e7559bb",93124:"42e8cbb3",93474:"c3efefe4",93637:"e91b02be",93669:"a252b33f",93799:"352379af",93936:"850ece50",93978:"0fe0ccc7",94075:"4171ae7f",94155:"8a4daa3b",94246:"872379cf",94433:"efe1d13a",94485:"1df0bf2a",94526:"9746ca7b",94530:"6f0123ef",94852:"2308dcf3",94979:"8ac907f8",95016:"8e1bf126",95080:"a3304b48",95105:"4356428f",95309:"5bd52431",95315:"f3634bd2",95316:"e30960a7",95328:"8c6b97bf",95392:"74f9148b",95520:"026b0f1d",95656:"d8aa108f",95843:"4677217b",95851:"648a3482",95966:"15659d54",96321:"30fe064f",96443:"6540f7c7",96529:"2fbebc4d",96553:"70f17b6a",96751:"559ca816",96848:"58fe75b9",97185:"47d3ce37",97220:"1094d3ac",97239:"259c64e2",97446:"9754eb65",97555:"e6f1bbf8",97642:"432ba8c0",97692:"2e7b1ecd",97766:"4be882fd",97884:"33b8ac1d",97988:"af30bbb1",98037:"8745e5b0",98206:"0cd5b1a7",98291:"ec7ac759",98581:"935f2afb",98601:"62cdd780",98808:"d248ca85",99222:"794b0494",99377:"cb5e20e2",99441:"9e98946b",99746:"751b68b4",99784:"82d2d99a",99917:"8a6e3c59"}[e]||e)+"."+{15:"5a4c8853",36:"9d3fb395",353:"5377980a",359:"3866b417",536:"c5874d41",1038:"bcb42e2c",1316:"e95dbe8d",2075:"a81ae20f",2123:"1cd0f5a7",2450:"06490107",2647:"3b7810c2",2652:"514fb0f2",2932:"511f0228",2960:"bbc91bcd",3210:"17359c8b",3233:"4f6b9baa",3262:"5233df3a",3299:"a43c0931",3302:"80a10138",3640:"d2c67571",3735:"4ee5b9f4",3926:"7f667f06",4047:"29fdbd7a",4105:"af204dfd",4113:"abecc939",4432:"c72e9f21",4736:"6d08f9a0",4886:"f0499039",4946:"01542bc0",5005:"58b1df97",5148:"0c3a26f0",5415:"dfdf64e0",5715:"a7fe51b4",5874:"2ea0044f",5886:"30239bb7",6149:"f24564f6",6182:"fe0898b0",6249:"8996c919",6255:"74224db3",6368:"3790aef0",6428:"ad8041fa",6507:"22054a01",6524:"7accbf49",6595:"28d10394",6669:"63daa4da",6988:"ab3e06cd",7180:"99c9ef39",7202:"45b065e3",7292:"31922f45",7402:"f0836343",7420:"d16f8428",7545:"17e51b46",7727:"36dae34f",8248:"f5155aae",8250:"814b2953",8387:"e71415b2",8641:"d23bfbc8",8682:"389785e0",8711:"96c4a535",8725:"1211983d",8765:"ac41f758",8853:"2f6f299b",8919:"09c78370",8960:"aa087df0",9045:"b229978d",9197:"3350dd54",9362:"492ebe4e",9371:"38589bfe",9508:"25198bc4",9591:"438f805f",9647:"6546dd97",9669:"97d81816",9763:"13e66a77",9768:"a7cbe9d6",9790:"34b32919",9895:"010e53d0",10325:"5cf3a045",10394:"d39575ac",10467:"82906042",10571:"ce72f903",10783:"c166a38a",10836:"f5d98488",10853:"3b0bc1db",11157:"2dde3040",11200:"ed2198a4",11384:"9f5ed678",11429:"2af91218",11506:"157ca10d",11866:"4425e44f",11969:"e15634f6",12031:"313e15a2",12032:"66ecc8ea",12515:"2f0b2ea0",12646:"f90729e5",12726:"21ed4220",12791:"016fe099",13021:"ed0d68d1",13089:"21a1672f",13208:"97d77d93",13299:"56f0c0b8",13843:"06670588",13940:"7dc840d0",14140:"3e99dc47",14162:"e63e625d",14338:"e47e89bd",14602:"6556dcde",14774:"40666241",15306:"3d7f5527",15327:"1e5b4514",15889:"0dd04770",15929:"eca05f99",16061:"021fec46",16081:"d7a575ea",16192:"1325928d",16248:"c944c510",16308:"dd5e7c4e",16325:"30063e5d",16337:"d877fc5f",16341:"9f36a902",16626:"fa5a129b",16789:"90bf7b29",16939:"f454482b",16949:"f8138db0",17303:"12c5af9f",17369:"de1ed05e",17657:"ae6f3a43",17785:"19513e83",18119:"0b634ce9",18122:"232ec2fc",18181:"d0c6f754",18265:"1bc3b1c0",18340:"1435ffb3",18401:"3486e015",18500:"1a5849ab",18578:"66b71bb0",18827:"b18e9496",19109:"7fbf5188",19293:"924933ca",19393:"9f21d273",19411:"fc0f9da3",19662:"85d76069",19699:"e4a897df",20004:"04ab9f71",20118:"a4e9f651",20329:"08cb55d8",20389:"832d24b0",20515:"f0c249d3",21187:"046a31d9",21559:"e52c3929",21600:"965609b7",21672:"f632326f",22152:"1fd94ae1",22343:"777ce362",22408:"bb1d4f74",22442:"3e70e8a0",22483:"a57529b4",22600:"b2725a0c",22773:"b2fffaba",22819:"a5070b63",23014:"dd064278",23016:"5159448b",23075:"40bff4b6",23115:"d8808d0f",23626:"daeabee7",23714:"c7b4f997",23819:"5e799e8c",23907:"e18457cc",24045:"f895071c",24165:"e851a56b",24288:"2c18e2c5",24451:"9f3ba32e",24616:"9ef83aca",24697:"96149203",24944:"153f6ed3",25042:"b2e9aa9e",25207:"2715348b",25263:"ad04b75b",25308:"fb009d75",25391:"6504a3a4",25661:"0c4a2572",25729:"87901e4d",25871:"cd2abd7b",25892:"39750882",26021:"6f2911fa",26091:"d82acefa",26112:"9adc1bad",26133:"45d15565",26152:"88d6254c",26155:"ad196edd",26328:"d1c95956",26480:"5698d302",26592:"8cffca5d",27029:"87468003",27083:"26b63004",27467:"7e5d22d0",27504:"bdf89f82",27683:"09bce8e5",27826:"a79e129c",28079:"8bc27211",28104:"dba4dfc9",28107:"b182110e",28112:"0ceb896f",28153:"878e3fb5",28268:"4c91738a",28564:"08728937",28768:"f15bb6da",28922:"52716122",29571:"43c6bf2e",29853:"dca07ca3",29976:"f124f04c",30079:"db410a26",30090:"6bb3acc4",30204:"993fdd52",30563:"e71e42f4",30749:"6afa4dde",31087:"60fcd53e",31245:"babdc2af",31255:"0b96408e",31412:"49e78db0",31425:"a41716dd",31492:"32238c9a",31609:"203a75cd",31669:"fff5c4d3",31836:"a495f64d",31872:"dcd8e3b5",32102:"da3aeb1e",32131:"f5d385dd",32209:"046f49d2",32272:"f3743065",32287:"f03551f5",32470:"4e713fca",32477:"a63e1db8",32861:"61976afa",32961:"cda599bb",32968:"50344f25",33070:"3c7585ab",33109:"4e91792a",33214:"94c95c51",33261:"f8152fcf",33270:"5a8f6501",33386:"fd9903d5",33478:"2a8d33c3",33523:"0f65d685",33706:"760dfe58",33707:"e73e9c4d",33748:"a310c70b",33811:"44fb50ce",33871:"0438330d",33936:"122c037b",34062:"feee2702",34128:"79e8bd4a",34221:"34a376ce",34412:"a522a890",34463:"c075a455",34473:"3b257f04",34654:"66a382cb",34786:"c1dd0f12",34857:"473088c3",34870:"c19d6364",35160:"8b3de352",35173:"a0b8c7e5",35230:"27dba143",35401:"14211fbf",35581:"8938c37d",36154:"e88011fa",36253:"7d3bb8bc",36347:"0c95d414",36597:"161c4b49",36598:"47281b64",36645:"91ef311f",36814:"4add2787",36852:"2b06e87d",37310:"9f6a2794",37404:"47f306cf",37571:"54b988da",37586:"4db7700c",37681:"182a92bd",37690:"eaf20de6",37726:"eb640b36",37802:"03198d93",37974:"81c1129f",38090:"7b415347",38600:"f57ae988",38613:"b9470b9b",38620:"d3ac9046",38622:"5cacd5cb",38634:"d6911f6a",39013:"bc3e54e1",39038:"93abec79",39078:"2b997ce3",39221:"c323b2d6",39545:"3da08c29",39561:"b58d6d4f",39667:"34a01fb7",40081:"c39ebe7a",40249:"8edad9de",40523:"774bc312",40570:"42661218",40683:"5a49b3b3",40742:"bddddcc3",40802:"d5d082e3",40844:"934e59d1",40905:"d7ebf799",41229:"c7f60265",41399:"c86470dc",41576:"094c62f7",41880:"1cbf7e77",42018:"e9d6b94e",42183:"e7f6983b",42389:"07033df1",42420:"99331885",42656:"095b3b8b",42683:"2e62aae6",42839:"b61e6b9a",42856:"3ec1b274",43087:"8f6b9c80",43162:"2ba339d1",43169:"cddfb404",43289:"f4e81dd8",43514:"ec7806eb",43516:"d3b09cd1",43568:"887b4e27",43749:"d400061c",43943:"f6591d25",43948:"f4a1e7e4",44077:"1342c1c1",44556:"16b9aabd",45071:"d7d337d1",45087:"648aefa9",45623:"2ba7ec1a",45681:"1387f9cb",45738:"e919f586",45903:"61cea8cf",45951:"36a7acf1",46001:"8c876c24",46067:"8b206766",46069:"654cda13",46137:"61739e40",46484:"043925e5",46571:"1369e5a1",46765:"90bb14ea",47063:"c32bf918",47643:"da7f728c",48098:"16d42a97",48110:"fb81ebd0",48190:"0564b315",48724:"dc95d88d",48866:"245b73ee",48900:"85234c15",49042:"41049899",49167:"c9313e49",49232:"42817166",49294:"b21a1844",49364:"5d17beff",49409:"28b7e302",49706:"9c4a40d5",50528:"3145d628",50763:"88c901e7",50794:"3d4fcca7",51030:"1700b939",51068:"9e1c07ad",51103:"eeb497a0",51200:"6312ed08",51269:"aff98190",51308:"2b7616f2",51645:"421c5baa",51791:"6f3e9c50",51800:"6fc9f671",52072:"e294f2f0",52140:"e5d9616e",52153:"9936b562",52335:"4c31bb8c",52550:"c105a7c0",52634:"f1881166",52694:"ad350454",52891:"88332a69",53036:"c25206dd",53045:"001371e1",53320:"2c6411c3",53409:"42088890",53416:"48a4e192",53716:"88cc5a48",53754:"19d9adea",53870:"e592706d",54357:"7128cd15",54727:"c5644236",54784:"47404ddb",54838:"12833b3c",55067:"2d3e6036",55286:"935317fb",55380:"8768e609",55449:"3829b459",55526:"c5a7a776",55570:"e65427ef",55991:"9c7935b4",56107:"c868b9f9",56158:"1de1a8d3",56173:"613454a0",56176:"eff999ac",56333:"f45b5e1c",56601:"4afd7f41",56672:"fa17144e",56802:"5e693cec",56809:"11517324",57346:"5b829857",57387:"eda5e40a",57426:"d9eb81e9",57618:"9a9d8b8c",57813:"05f456c4",57871:"a5e6e7ca",57949:"7b5b608f",58133:"db85b779",58241:"7a55500f",58250:"f6267dc1",58356:"40314a6c",58465:"99bd02bb",58705:"5de3f6c8",58711:"2ba0cc67",58755:"1658c304",58764:"4d757660",58946:"20ee1bc8",58969:"a84611f8",59140:"8eaf3444",59295:"01fd9962",59388:"6502f69e",59449:"d3486a86",59682:"0c54c9f3",59783:"1b06f2b3",59911:"897a0571",59960:"8b588b7f",60042:"8557e541",60043:"bc7d1ef7",60126:"55330b3a",60491:"ca7694cf",60912:"06f64cbf",61056:"18c7814f",61076:"8657dbab",61145:"0de0b66f",61408:"2bcaea52",61601:"85fcbe9e",61674:"76db7a59",61895:"57a65008",61980:"ddddce58",62092:"68e38b41",62112:"49c06c2b",62138:"f04aa94f",62242:"72d37efd",62270:"7078756b",62809:"0ac8d4b2",62948:"4fe25a33",63184:"25be8c13",63285:"21ed8c86",63551:"6e2edf81",63588:"b145c6d4",63625:"0da217ca",64078:"057b4e43",64476:"177a9a7e",64575:"094d1181",64660:"93487afa",64705:"c409c7f6",64727:"97483e51",64818:"41ef45fc",64915:"68b11c5e",65038:"00d8914b",65150:"106c23ef",65429:"0937dc77",65441:"ee289052",65473:"4f18a5b0",65672:"85d1206d",65867:"1bd62fa3",65880:"7d2bd2e9",66061:"ef56db89",66115:"27089420",66303:"5b805328",66324:"4cfda1ac",66359:"5291d6c3",66564:"2fc01220",67098:"2310fdee",67148:"84d4b954",67228:"1a892724",67270:"fa4dbf3b",67291:"1b8e291c",67459:"2515af72",67546:"61834224",68047:"4754d9ee",68576:"364c1194",68596:"58a1c771",69061:"210d61d2",69085:"15aa0d74",69166:"7f43ae1a",69349:"987357b5",69465:"29cbeb12",69977:"bab3f656",69999:"66f31393",70180:"3f00e60e",70273:"8ab45821",70294:"dddf839a",70377:"f0f5c665",70699:"b1866e2e",70706:"125de025",70747:"bf951298",70806:"c00eecf0",70860:"c30b4781",70921:"cb0e4cae",70948:"0d7c281e",71013:"9af18522",71453:"883f562e",71457:"c48b9027",71560:"1d976fd6",72405:"df22fb5c",72406:"ffce46bf",72420:"1fccc8f5",72780:"1ad3e33d",72903:"ed171e72",72913:"82fc1d2b",72982:"a7e6d502",73171:"3840ce68",73195:"cb22ca1e",73204:"a820ef96",73235:"52844d3f",73509:"89f11c70",73607:"26788e3a",74118:"5c9d5589",74146:"5e7f8cfc",74259:"fd9307b6",74287:"e313f0fb",74356:"95b2eece",74618:"799aae52",74838:"9d43e5a3",75102:"5eeaa5e8",75397:"c54a4dc3",75566:"34b7741f",75751:"391ab311",75780:"c59f3847",75853:"0813671b",76047:"fb452f70",76108:"8b5e5c6d",76120:"1ecf4a24",76438:"485dac2b",76635:"5ffae22f",76709:"e1635d85",76786:"8e7515b2",76842:"53e87192",77007:"c0d782fb",77039:"b4738f72",77177:"766a5ee5",77401:"fb8098e9",77494:"1e46b845",77564:"ee811dc6",77630:"9e976706",77671:"e4ac185f",77778:"71e75de8",77993:"1f594987",78023:"22026e60",78187:"10fe25ca",78201:"75b2f492",78425:"edd2f17e",78678:"3914d96f",78763:"d1ce8aa5",79048:"219ce49b",79050:"533c1019",79322:"e37aa104",79323:"af46aa16",79767:"4798e011",79798:"4aef9095",79862:"af6e741f",80047:"5e693631",80097:"f63960b6",80266:"9a8c7797",80551:"0155abe3",80567:"f81bb02f",80715:"3912c01b",81044:"d85a41eb",81073:"89bc3730",81270:"fd34ab20",81367:"099e636b",81516:"1b951c93",81517:"c1fa524e",81542:"ba846158",81618:"f4dfdd5e",81620:"5eeb0bb3",81745:"588ea68c",81848:"5aa932af",81874:"2c087f6c",82175:"33ad5872",82206:"530aad0a",82362:"71721aed",82413:"fdf9adf3",82432:"495b1e37",82495:"3789cc0a",82669:"c887e54d",82756:"f02bae18",82862:"5e181739",83045:"0978e983",83371:"9cb0e2a1",83379:"be6985d0",83416:"0e6f74f0",83430:"32ddcfce",83486:"9e804101",83510:"c2bf7f11",83553:"befea8ab",83593:"9966e68f",83683:"ad6afa6d",83971:"844ece9e",84795:"c9dac3d7",84838:"1c0a8f11",84927:"5aa2d666",84933:"2012c1d5",85103:"0d71730f",85682:"d4326293",85739:"0a37970a",85775:"d545cadd",85812:"4385ea2b",85958:"a3695949",86048:"9d349249",86164:"80c3bb65",86260:"0b62f299",86547:"2676e25c",86618:"428a56b9",86650:"f9dffd51",86673:"c0f83609",86898:"713bdb49",87392:"35affe36",87683:"e22e3d6f",88353:"56cb4a3f",88464:"b93e8173",88542:"440f371e",88852:"20f40c33",89173:"67b9d17a",89732:"8fb22a48",89753:"50c39f8f",89760:"5fb01931",89838:"08219d20",89845:"321686d9",89907:"7e4d1edb",89983:"36c279f3",90046:"3d808f5b",90302:"9aa6a6ea",90310:"01511a48",90442:"5dec0793",90455:"779c5d25",91136:"539ba270",91164:"a72dbb7a",91416:"9bb5a79f",91467:"1ffa734f",91494:"0c29b5a6",91554:"f016e693",91702:"17eb0298",91857:"0712e1a0",92052:"289a7b73",92307:"6cda55c4",92554:"992c14b6",92747:"d45370cd",92763:"8b985e74",92802:"65f606f7",93120:"299a1c53",93124:"e57f7c3b",93474:"faacee4b",93637:"09c66600",93669:"ca017089",93799:"70ea7f9e",93936:"2c8c7c2c",93978:"2399542c",94075:"d9c636f0",94155:"d85b9f81",94246:"3689176f",94433:"2616a1d8",94485:"ea47c07e",94526:"782a3e33",94530:"a7a66cba",94852:"5905847c",94979:"e452e80d",95016:"757a22e6",95080:"2a8a1698",95105:"d635c91a",95309:"1fcbed53",95315:"154e01f5",95316:"659e5f34",95328:"ef2bc5d7",95392:"12bc6870",95520:"2424eaf9",95656:"ccdbccca",95843:"bdb0480e",95851:"def3668a",95966:"9cb117e2",96321:"dc561000",96443:"f4eaf4fb",96529:"eacfa9b6",96553:"c269352a",96751:"bed8de93",96848:"d9134261",97185:"88880b50",97220:"cb228af3",97239:"ac5efb4b",97446:"272c9335",97555:"f574eb2b",97642:"ef13c6f5",97692:"04643f2f",97766:"b450dcbe",97884:"072a661a",97988:"bb8569f8",98037:"bf50b79f",98206:"8c08998d",98291:"9d28d360",98581:"514a4faa",98601:"6fee1eeb",98808:"533da404",99222:"2e271426",99377:"59171dd5",99441:"cac2289d",99746:"62bfd2c6",99784:"db92231d",99917:"bd00635d"}[e]+".js",r.miniCssF=e=>{},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,b)=>Object.prototype.hasOwnProperty.call(e,b),f={},c="website:",r.l=(e,b,a,d)=>{if(f[e])f[e].push(b);else{var t,o;if(void 0!==a)for(var n=document.getElementsByTagName("script"),i=0;i{t.onerror=t.onload=null,clearTimeout(s);var c=f[e];if(delete f[e],t.parentNode&&t.parentNode.removeChild(t),c&&c.forEach((e=>e(a))),b)return b(a)},s=setTimeout(l.bind(null,void 0,{type:"timeout",target:t}),12e4);t.onerror=l.bind(null,t.onerror),t.onload=l.bind(null,t.onload),o&&document.head.appendChild(t)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/",r.gca=function(e){return e={17896441:"18401",25778245:"63625",45113257:"50763",57176175:"73204",58082863:"76047",66527541:"83379",67158670:"29571",70245927:"23907",72207194:"40249",84555378:"75780",89522323:"3299",90571119:"8248",92667337:"39078",96225825:"64818","8102b5ac":"15","19e8550d":"36",d8ac4d11:"353","31dd2b75":"359","086d5e3f":"536",d16572ac:"1038","22290b7c":"1316",f933782b:"2075","0b9c6e63":"2123","04768086":"2450",dcb5266f:"2647",da84cc0d:"2652",ce9e2dcf:"2932","0f3f8c85":"2960","1ef3c4cb":"3210",a5f90f12:"3233","94e4428c":"3262",c8855521:"3302","1626930f":"3640",da4a45a6:"3735","97ff1006":"3926",c0390a80:"4047","1cb009e2":"4105","6947aa75":"4113","548a188b":"4432","89cbeac6":"4736","13f29f79":"4886","0519d6ff":"4946","17e08b0c":"5005","5d738820":"5148","01627567":"5415",a5b5dcea:"5715",f8b6f1ce:"5874","30de4b0c":"5886","78d8c6ce":"6149",b2f441e1:"6182","97cf841f":"6249","86bd704e":"6255","442d4849":"6368",f7c05237:"6428","95c50459":"6507",ae9f1acc:"6524","9f84576c":"6595",bff552dd:"6669","53d6c163":"6988",c0873f99:"7180","3c851dde":"7202","19d98c6a":"7292",af25c48f:"7402",bf59ca81:"7420",fc009b8f:"7545","08958cc8":"7727",e897f185:"8250","6187a22c":"8387","3683234c":"8641","28f896bb":"8682",b534254a:"8711","3384d06b":"8725","5c9389cb":"8765","341034ab":"8853","7ce1a762":"8919","31bb26c2":"8960","54213aa1":"9045",f7f2e981:"9197","4c43497a":"9362","3b084a86":"9371","8fce5129":"9508","57d3a897":"9591","5e95c892":"9647",e80a80ce:"9669","605a9692":"9763","284c0406":"9768",d3bbc5fd:"9790",d8538008:"9895","197162c9":"10325","7d04a98b":"10394","3cbcee45":"10467","3dd193dd":"10571","203393bb":"10783","5188416b":"10836",ec5ce2a8:"10853","178e95a2":"11157","564cd4c0":"11200","66d67008":"11384","61e9bb6e":"11429","730062b1":"11506",b8c87182:"11866",a40e4d8d:"11969",f17eea78:"12031",f31b0025:"12032",d1187d43:"12515","354854e1":"12646",c95b781b:"12726",ebb6a828:"12791","6875b121":"13021","1a8d89d5":"13089","8f3eca0e":"13208","5a396677":"13299","6bf8e8e6":"13843",db9c64ed:"13940","20d575d4":"14140","0b0c644f":"14162","65d34724":"14338","28164c5f":"14602",a521008d:"14774","0f214f11":"15306",d69b5ce4:"15327",d4751fcb:"15889",b99ad014:"15929","7b6b8da6":"16061","04f93611":"16081",b8d9badc:"16192","0e6e7f1a":"16248","92ebcf1c":"16308","959f8bcb":"16325","495df45a":"16337",a617c0b8:"16341",ce784664:"16626",eb39d40e:"16939",a1c02285:"16949",d3b31caa:"17303",c52cb584:"17369","30b0614b":"17657",be46464e:"17785","6f2f0c4c":"18119",f63c7767:"18122",d15d046b:"18181","660f1f01":"18265",c1d1596b:"18340","5652c446":"18500",de4cf88e:"18578","5d439d21":"18827","08b63e68":"19109","7ea12187":"19293",fea909d2:"19393","53c63e3f":"19411",d443b36e:"19662","0dcca658":"19699",f9faa05a:"20118","26eafd15":"20329","2457c0ef":"20389","94abfae6":"20515",a65c2029:"21187","81215a04":"21559",e0250fe6:"21600","4fd3fe56":"21672","65e91a71":"22152",fa9bdbac:"22343",d4cdbb95:"22408",f0045c87:"22442",fd2b2a05:"22483","80348dae":"22600",a75efafa:"22773",aea8cccb:"22819","0565d9f4":"23014",d063fe9f:"23016",b8a75ff1:"23075","85ff2641":"23115","098cffed":"23626","0203cbc2":"23714","5cf764b1":"23819",a7022165:"24045",dfc96154:"24165",deaca5dd:"24288","2774336d":"24451","528dfaf3":"24616","8daebb13":"24697",e718b7e6:"24944",acc1e0c7:"25042","3d7f4be7":"25207",b6a19a2b:"25263",aa222e6d:"25308","121a060a":"25391","288b5fa4":"25661","9879f36f":"25729","1e0f4596":"25871",d3377450:"25892","5a3f9071":"26021",fadff26c:"26091","6dd3a2f1":"26112",deedc2a8:"26133",a6860501:"26152",e951bf48:"26155",fc3648c4:"26328",c6405911:"26480","83f9573b":"26592","3bfd86a6":"27029","761be9ac":"27083","1514c2db":"27467",b06b747e:"27504",c3b79105:"27683",c9dad6db:"27826","52045c4e":"28079","92cca7ce":"28104","174d46b8":"28107","0810aeb4":"28112","988211ef":"28153",add37b26:"28268","8199a7c1":"28564",c452b0b7:"28768","203f692a":"28922","02ad889d":"29853",e9498790:"29976",cd8a45a6:"30079","45af7cbe":"30090","621f1fa8":"30204",cc3eb85c:"30563","2c019423":"30749","830bde22":"31087",c65b3d63:"31245","8d971cbb":"31255","4bbb5eb1":"31412","6c36aa60":"31425",fb0baf48:"31492","529f7014":"31609","8ad1c52d":"31669","2dc84aaf":"31836","3e90f77d":"31872","39e6d37f":"32102","9e9f5dce":"32131",c0a49dd7:"32209","3deac311":"32272","15d1a8b2":"32287",e50d8128:"32470",f82ec024:"32477","3dd644e6":"32861",d5f4f3d4:"32961","293bee56":"32968",e75f0651:"33070","284fa5fb":"33109","8b190d09":"33214",da845f06:"33261",d7cf88d1:"33270",cd72eb9e:"33386","1f445f4e":"33478","3d1791fa":"33523",b1c24be0:"33706",a05f508e:"33707","6bb5aff3":"33748","7fc5f702":"33811",a6e9442a:"33871","13cf577a":"33936","1f87d76b":"34062","3110a528":"34128",cd9d94be:"34221",df632275:"34412",db881351:"34463",b9526204:"34473","024f5110":"34654","0448914c":"34786","6dc7dc4a":"34857",a9bc95bb:"34870","6d7a4f7b":"35160",afe6f65e:"35173",c7eff138:"35230","8e403b22":"35401",d28f8723:"35581","09920c24":"36154","83debc9b":"36253","1072df95":"36347","13f68f62":"36597","5ba37eca":"36598",a7fed74b:"36645",ae8ddf81:"36814",ce30221e:"36852",c7277ad6:"37310",be6859b2:"37404","067a7414":"37571","229fac93":"37586",f03fab11:"37681","96345a43":"37690","92d75d1c":"37726",facbb56d:"37802","6e3154f7":"37974","77816f9e":"38090",a633adf5:"38600","98952d49":"38613","58597cf2":"38620",cf736a7b:"38622",cacb3d65:"38634","08ea7f98":"39013","6388662f":"39038",f6d558f6:"39221","89a0a60a":"39545","3f99eb33":"39561","29295ff3":"39667",f769181d:"40081","7c3e0a90":"40523","4ff49acf":"40570","925455b6":"40683",b695efd2:"40742","2b4143dc":"40802","915fdef3":"40844",b0f84f31:"40905","2f7b0683":"41229","2757bf0a":"41399","00a17dd8":"41576",e74fe2a7:"41880","278ee235":"42018","0b9e986a":"42183","93c6800a":"42389",ac710fda:"42420","45a2a32a":"42656",c928173c:"42683","15abff36":"42839","33aa855a":"42856","6d78f76d":"43087","2f626edb":"43162",ed3bee84:"43169","91d25720":"43289","88ef04a7":"43514","2b10040d":"43516","99e0db6b":"43568",b3a8e371:"43749",c08d65fc:"43948","1d098224":"44077",c25457d3:"44556",dbb33cef:"45071",f6435ed1:"45087","139f73fe":"45623","1e6876ab":"45681",cfabf7e9:"45738","98d35d14":"45903","25e935c4":"45951","56be068b":"46001",c78cff6c:"46067",d0cc8b4f:"46069","45f98d44":"46137",a77f4c3b:"46484","78e4148a":"46571",bb9f8df1:"46765","22d92bf3":"47063","0f66ed5f":"47643",e0cfa6fb:"48098","93e59a16":"48110","6abe350e":"48190","0dc95480":"48724","8b608a5c":"48866",afee9407:"48900","43c45fbd":"49042","883b80f5":"49167","3f297b93":"49232","1a7d2b73":"49294","85f02d4b":"49364",daba4570:"49409","29a3d0d6":"49706","34af491e":"50528",c140d46c:"50794","34d88677":"51030",bcca5012:"51068","1d314591":"51103",bebf10ba:"51200","958e6623":"51269",da3e9658:"51308","244eac16":"51645","0131ba20":"51791","54b2a591":"51800","842b9c6e":"52072",a7cd363d:"52140",d4e92657:"52153",fd8e5d2f:"52335","641fb5ab":"52550",c4f5d8e4:"52634","8aa5df97":"52694",afbdcc09:"52891","2999c86a":"53036",f1bf9ead:"53045","5c518724":"53320",c70aa1ed:"53409","9523dcb5":"53416","5c9831a7":"53716",bb9c3ed9:"53754","4d53942d":"53870","1dea1673":"54357",f5272822:"54727","075bf599":"54784","8daf2cfc":"54838",ca3ac135:"55067","474cf6da":"55286",b2399376:"55380","56f4e815":"55449",cff1c286:"55526","43a73887":"55570",c3dff334:"55991","5166b893":"56107","17c1bf74":"56158",abd6c138:"56173",bd9c2ce3:"56176","3e76e7e2":"56333",ca87bd6e:"56601",a6514927:"56672","9e33764b":"56802","9eea1548":"56809","548f5e59":"57346",be7a0dbe:"57387",b9bde1e9:"57426","649b7061":"57618","1dcb712d":"57813","33daa5c8":"57871","5c9ba668":"57949",c0bd6a4b:"58133","1394ac74":"58241",e5e048c5:"58250","64a11ff0":"58356",e59213c0:"58465",c8ec7de9:"58705",ac22c4de:"58711","829baac4":"58755","8f5ca9a8":"58764","813c57df":"58946","5603f239":"58969","79b08c73":"59140",a3542ba4:"59295","6454a05b":"59388","92b7280d":"59449",de8ad7db:"59682","33031c96":"59783","484362c2":"59911","116ce0e0":"59960","34672d36":"60042","073760cf":"60043",b16939e2:"60126",e7752ddb:"60491",a649354c:"60912","3951a3d5":"61056",fafbe599:"61076",dbbae471:"61145","53ba98a8":"61408",d872d333:"61601","3dbf3764":"61674",a4a95510:"61895","617e9601":"61980",d6e66bbb:"62092","333ae3de":"62112","1a4e3797":"62138","532b25e9":"62242","6069883e":"62270","5df7ef96":"62809","8d20ce23":"62948",b9d8091f:"63184","66a5fdbd":"63285","52e54cbf":"63551",debcf1ca:"63588",bd0b3be5:"64078",a3cf9e9a:"64476","1cb70b87":"64575","1582f434":"64660",e2e6c14f:"64705","58a729ec":"64727","63d0f0e0":"64915","7c4de6ae":"65038","0976f607":"65150","1c9209f4":"65429",f14a91aa:"65441",a008f403:"65473","9f72f8ad":"65672","02b8ff39":"65867","21fffddb":"65880","1f391b9e":"66061","3484cec4":"66115","3c15e784":"66303","26c8b3d3":"66324","34ee1a85":"66359",c512952f:"66564",a7bd4aaa:"67098",c07122e1:"67148",e3e676f7:"67228","4d985d8a":"67270","67b585cb":"67291",a38fce19:"67459",e2561c05:"67546","1f5d5f87":"68047",b5b50fa2:"68576",e8ce8f9a:"68596","5ae3e876":"69061","36f1c627":"69085","48b422ba":"69166","5adad896":"69349",a65edd96:"69465","3bfb82cf":"69977",ead72281:"69999",bff0400e:"70180",fb133e19:"70273",c3a3eb3c:"70294",b780b841:"70377",b6ccfdca:"70699","09fd6bc3":"70706","49077a33":"70747","0ffa903f":"70806",b31cf73f:"70860","03ef24a9":"70921",a8ec943f:"70948","6b6cd41d":"71013",e15bcb33:"71453",aa392378:"71457","32947c92":"71560","1fec1075":"72405",bce28ad4:"72406",b027356b:"72420","4c517393":"72780",fd3398f1:"72903","0b7eabf3":"72913","2e1bbbbe":"72982","07de990d":"73171",a8913000:"73195",a2c14f61:"73235",c56532b8:"73509","579c441c":"73607","9ce8caa5":"74118","9aa2d1d3":"74146","27e1f4b3":"74259","719705af":"74287","6a4d9186":"74356","5877df2d":"74618","23b73747":"74838","6a858f16":"75102",c2467954:"75397",c9bc13ce:"75566","9a6d52da":"75751",cd78c8cb:"75853",d808852d:"76108","8d2ab356":"76120","9a3fbf2b":"76438","13b56c59":"76635","76634d71":"76709",aea5966f:"76786",e62294b1:"76842","9f2f7e81":"77007",d6ce4507:"77039","253fbb59":"77177","68bfee64":"77401","24bb3679":"77494","1b5b94bb":"77564","2cdd7720":"77630","8a525f09":"77671","879025b0":"77778","3826374e":"77993","4bbb7f4a":"78023",d77c210f:"78187",a2c1c70a:"78201",b198df35:"78425",dc8253a3:"78678",d84189a7:"78763",a94703ab:"79048","8bc280ca":"79050","5345c07d":"79322","6175b9e3":"79323",f00baad2:"79767","9707d709":"79798","17c79707":"79862","447f169e":"80047","6a14e4a6":"80097",b94a2346:"80266","26b9516c":"80551","62e81aa6":"80567",c1be4069:"80715",f12e5031:"81044","785bbfee":"81073","0780ab69":"81270","131f5b8d":"81367","98bfff7a":"81516","91fda863":"81517","1a38f637":"81542","3f50cac0":"81618","3619f683":"81745","39455ce1":"81848",efa2f5a1:"81874",ed701816:"82175","392e1a00":"82206","5eab74b1":"82362",cf5a4cff:"82413","5b270591":"82432","3259ac92":"82495",df6ab4bc:"82669",d643cbaf:"82756","47b8b18c":"82862","0b0ea5f1":"83045",b56a9dad:"83371","48c9bcee":"83416",e36c389f:"83430","6561ff8a":"83486","8f69be8c":"83510","31c3b644":"83553","2432bf2e":"83593","4293d558":"83683","1e32b83f":"84795","4e1badf8":"84838","2acaeb1a":"84927","481cf853":"84933",e8b823ec:"85103",a9215700:"85682","4cd336cf":"85739",e127b1c1:"85775","12af6885":"85812",e7c63a3c:"85958",e0ea7e73:"86048",f3be527a:"86164","04f00c7c":"86260","00aed75b":"86547","5e906dfd":"86618",fc9493b5:"86650","0a87ba36":"86673","2768bd3e":"86898",e6aabe98:"87392","0734b534":"87683","51392a58":"88353","97597cd7":"88464",dadaae3f:"88542",e3883bac:"88852","04f5229b":"89173","330bcee0":"89732","427c3667":"89753",cb2f5335:"89760","1f466884":"89838","2a3c922d":"89845","506691da":"89907","34003c72":"89983",bd59b609:"90046","8627d2ff":"90302",e42b3d9d:"90310",cbc12d17:"90442","6db854fa":"90455",ed0bdba3:"91136","477a37df":"91164","59ca9e65":"91416","92a19523":"91467","12c7c638":"91494",d9f7e22f:"91554","69994b68":"91702","8c9cae58":"91857",c610c5a8:"92052",aa2738c3:"92307",a8d4abbe:"92554","42f05cce":"92747","863d209f":"92763","055b225f":"92802","8e7559bb":"93120","42e8cbb3":"93124",c3efefe4:"93474",e91b02be:"93637",a252b33f:"93669","352379af":"93799","850ece50":"93936","0fe0ccc7":"93978","4171ae7f":"94075","8a4daa3b":"94155","872379cf":"94246",efe1d13a:"94433","1df0bf2a":"94485","9746ca7b":"94526","6f0123ef":"94530","2308dcf3":"94852","8ac907f8":"94979","8e1bf126":"95016",a3304b48:"95080","4356428f":"95105","5bd52431":"95309",f3634bd2:"95315",e30960a7:"95316","8c6b97bf":"95328","74f9148b":"95392","026b0f1d":"95520",d8aa108f:"95656","4677217b":"95843","648a3482":"95851","15659d54":"95966","30fe064f":"96321","6540f7c7":"96443","2fbebc4d":"96529","70f17b6a":"96553","559ca816":"96751","58fe75b9":"96848","47d3ce37":"97185","1094d3ac":"97220","259c64e2":"97239","9754eb65":"97446",e6f1bbf8:"97555","432ba8c0":"97642","2e7b1ecd":"97692","4be882fd":"97766","33b8ac1d":"97884",af30bbb1:"97988","8745e5b0":"98037","0cd5b1a7":"98206",ec7ac759:"98291","935f2afb":"98581","62cdd780":"98601",d248ca85:"98808","794b0494":"99222",cb5e20e2:"99377","9e98946b":"99441","751b68b4":"99746","82d2d99a":"99784","8a6e3c59":"99917"}[e]||e,r.p+r.u(e)},(()=>{var e={45354:0,71869:0};r.f.j=(b,a)=>{var f=r.o(e,b)?e[b]:void 0;if(0!==f)if(f)a.push(f[2]);else if(/^(45354|71869)$/.test(b))e[b]=0;else{var c=new Promise(((a,c)=>f=e[b]=[a,c]));a.push(f[2]=c);var d=r.p+r.u(b),t=new Error;r.l(d,(a=>{if(r.o(e,b)&&(0!==(f=e[b])&&(e[b]=void 0),f)){var c=a&&("load"===a.type?"missing":a.type),d=a&&a.target&&a.target.src;t.message="Loading chunk "+b+" failed.\n("+c+": "+d+")",t.name="ChunkLoadError",t.type=c,t.request=d,f[1](t)}}),"chunk-"+b,b)}},r.O.j=b=>0===e[b];var b=(b,a)=>{var f,c,d=a[0],t=a[1],o=a[2],n=0;if(d.some((b=>0!==e[b]))){for(f in t)r.o(t,f)&&(r.m[f]=t[f]);if(o)var i=o(r)}for(b&&b(a);n Coding Guidelines | Apache YuniKorn - + diff --git a/community/download/index.html b/community/download/index.html index ac38850afe7..cc64fd10b67 100644 --- a/community/download/index.html +++ b/community/download/index.html @@ -4,7 +4,7 @@ Apache YuniKorn | Apache YuniKorn - + diff --git a/community/events/index.html b/community/events/index.html index d8c44c0162d..11470404eee 100644 --- a/community/events/index.html +++ b/community/events/index.html @@ -4,7 +4,7 @@ Events | Apache YuniKorn - + diff --git a/community/get_involved/index.html b/community/get_involved/index.html index 80a17da31ae..9c74dec2ccd 100644 --- a/community/get_involved/index.html +++ b/community/get_involved/index.html @@ -4,7 +4,7 @@ Get Involved | Apache YuniKorn - + diff --git a/community/how_to_contribute/index.html b/community/how_to_contribute/index.html index 9fac23d6e7e..a5fa4f33670 100644 --- a/community/how_to_contribute/index.html +++ b/community/how_to_contribute/index.html @@ -4,7 +4,7 @@ How To Contribute | Apache YuniKorn - + diff --git a/community/index.html b/community/index.html index 70a095b73a1..41da02d5d0c 100644 --- a/community/index.html +++ b/community/index.html @@ -4,7 +4,7 @@ Apache YuniKorn - + diff --git a/community/people/index.html b/community/people/index.html index d0e6a903b80..d707951bd0b 100644 --- a/community/people/index.html +++ b/community/people/index.html @@ -4,7 +4,7 @@ Who We Are | Apache YuniKorn - + diff --git a/community/release_procedure/index.html b/community/release_procedure/index.html index efc4c623a35..5c600c43002 100644 --- a/community/release_procedure/index.html +++ b/community/release_procedure/index.html @@ -4,7 +4,7 @@ Release Procedure | Apache YuniKorn - + diff --git a/community/reporting_issues/index.html b/community/reporting_issues/index.html index aa520bcc83b..19d0f51b7a3 100644 --- a/community/reporting_issues/index.html +++ b/community/reporting_issues/index.html @@ -4,7 +4,7 @@ Reporting Issues | Apache YuniKorn - + diff --git a/community/roadmap/index.html b/community/roadmap/index.html index 586d23303b7..04c0302f2e9 100644 --- a/community/roadmap/index.html +++ b/community/roadmap/index.html @@ -4,7 +4,7 @@ Roadmap | Apache YuniKorn - + diff --git a/docs/0.10.0/api/cluster/index.html b/docs/0.10.0/api/cluster/index.html index ad479c8e18c..9a8625a6b12 100644 --- a/docs/0.10.0/api/cluster/index.html +++ b/docs/0.10.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/0.10.0/api/scheduler/index.html b/docs/0.10.0/api/scheduler/index.html index 5310e1128a9..e12adb078fb 100644 --- a/docs/0.10.0/api/scheduler/index.html +++ b/docs/0.10.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/0.10.0/api/system/index.html b/docs/0.10.0/api/system/index.html index 89587bd56e0..badcb00b9a4 100644 --- a/docs/0.10.0/api/system/index.html +++ b/docs/0.10.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/0.10.0/design/architecture/index.html b/docs/0.10.0/design/architecture/index.html index bcfb33e5eb4..030bc552cc3 100644 --- a/docs/0.10.0/design/architecture/index.html +++ b/docs/0.10.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/0.10.0/design/cache_removal/index.html b/docs/0.10.0/design/cache_removal/index.html index 1e1ca869b69..35b8f9cf263 100644 --- a/docs/0.10.0/design/cache_removal/index.html +++ b/docs/0.10.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/0.10.0/design/cross_queue_preemption/index.html b/docs/0.10.0/design/cross_queue_preemption/index.html index c9163d1ae8f..2edf74eeef2 100644 --- a/docs/0.10.0/design/cross_queue_preemption/index.html +++ b/docs/0.10.0/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/0.10.0/design/k8shim/index.html b/docs/0.10.0/design/k8shim/index.html index 61ee434ce4b..69627a2ee91 100644 --- a/docs/0.10.0/design/k8shim/index.html +++ b/docs/0.10.0/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/0.10.0/design/namespace_resource_quota/index.html b/docs/0.10.0/design/namespace_resource_quota/index.html index ee00846e248..ff4b95f2222 100644 --- a/docs/0.10.0/design/namespace_resource_quota/index.html +++ b/docs/0.10.0/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/0.10.0/design/pluggable_app_management/index.html b/docs/0.10.0/design/pluggable_app_management/index.html index 2963d94b75c..7d6c6de14aa 100644 --- a/docs/0.10.0/design/pluggable_app_management/index.html +++ b/docs/0.10.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/0.10.0/design/predicates/index.html b/docs/0.10.0/design/predicates/index.html index 256bc916aad..4710f960455 100644 --- a/docs/0.10.0/design/predicates/index.html +++ b/docs/0.10.0/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/0.10.0/design/resilience/index.html b/docs/0.10.0/design/resilience/index.html index e98a9165c58..5228fdd280d 100644 --- a/docs/0.10.0/design/resilience/index.html +++ b/docs/0.10.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/0.10.0/design/scheduler_configuration/index.html b/docs/0.10.0/design/scheduler_configuration/index.html index fce1dc03b57..1b5eb337525 100644 --- a/docs/0.10.0/design/scheduler_configuration/index.html +++ b/docs/0.10.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/0.10.0/design/scheduler_core_design/index.html b/docs/0.10.0/design/scheduler_core_design/index.html index 93aabbbc35e..f3a6d8eafdd 100644 --- a/docs/0.10.0/design/scheduler_core_design/index.html +++ b/docs/0.10.0/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/0.10.0/design/scheduler_object_states/index.html b/docs/0.10.0/design/scheduler_object_states/index.html index 7648ddedbf1..4f61f63e146 100644 --- a/docs/0.10.0/design/scheduler_object_states/index.html +++ b/docs/0.10.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/0.10.0/design/state_aware_scheduling/index.html b/docs/0.10.0/design/state_aware_scheduling/index.html index 1ea568df8dc..fb2a9b43c56 100644 --- a/docs/0.10.0/design/state_aware_scheduling/index.html +++ b/docs/0.10.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/0.10.0/developer_guide/build/index.html b/docs/0.10.0/developer_guide/build/index.html index 61353800ac9..1f4c49b3576 100644 --- a/docs/0.10.0/developer_guide/build/index.html +++ b/docs/0.10.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/0.10.0/developer_guide/deployment/index.html b/docs/0.10.0/developer_guide/deployment/index.html index d1addf23931..0acbf79d671 100644 --- a/docs/0.10.0/developer_guide/deployment/index.html +++ b/docs/0.10.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/0.10.0/developer_guide/env_setup/index.html b/docs/0.10.0/developer_guide/env_setup/index.html index 41795559e99..3a6fb43ec20 100644 --- a/docs/0.10.0/developer_guide/env_setup/index.html +++ b/docs/0.10.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/0.10.0/developer_guide/openshift_development/index.html b/docs/0.10.0/developer_guide/openshift_development/index.html index 70dc90923fe..59ac27834b9 100644 --- a/docs/0.10.0/developer_guide/openshift_development/index.html +++ b/docs/0.10.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/0.10.0/get_started/core_features/index.html b/docs/0.10.0/get_started/core_features/index.html index c37d54e9b89..d1d9349ccf5 100644 --- a/docs/0.10.0/get_started/core_features/index.html +++ b/docs/0.10.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/0.10.0/index.html b/docs/0.10.0/index.html index afe13d8df4c..ecfdaa67179 100644 --- a/docs/0.10.0/index.html +++ b/docs/0.10.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/0.10.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/0.10.0/performance/evaluate_perf_function_with_kubemark/index.html index d0b594df2c9..a2a2a0e8f1f 100644 --- a/docs/0.10.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/0.10.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn function & performance with Kubemark | Apache YuniKorn - + diff --git a/docs/0.10.0/performance/metrics/index.html b/docs/0.10.0/performance/metrics/index.html index 945d2d25996..50a0877e27f 100644 --- a/docs/0.10.0/performance/metrics/index.html +++ b/docs/0.10.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/0.10.0/performance/profiling/index.html b/docs/0.10.0/performance/profiling/index.html index e883cb4e4f9..a988caa29de 100644 --- a/docs/0.10.0/performance/profiling/index.html +++ b/docs/0.10.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/acls/index.html b/docs/0.10.0/user_guide/acls/index.html index 461fc6d47f4..dc3c66be5f1 100644 --- a/docs/0.10.0/user_guide/acls/index.html +++ b/docs/0.10.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/gang_scheduling/index.html b/docs/0.10.0/user_guide/gang_scheduling/index.html index 88da4a9c0e0..e4171e0dd87 100644 --- a/docs/0.10.0/user_guide/gang_scheduling/index.html +++ b/docs/0.10.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/placement_rules/index.html b/docs/0.10.0/user_guide/placement_rules/index.html index c32c9c5e7d1..2c134826b65 100644 --- a/docs/0.10.0/user_guide/placement_rules/index.html +++ b/docs/0.10.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/queue_config/index.html b/docs/0.10.0/user_guide/queue_config/index.html index d6af26d2d22..18ef0bd19dc 100644 --- a/docs/0.10.0/user_guide/queue_config/index.html +++ b/docs/0.10.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/resource_quota_management/index.html b/docs/0.10.0/user_guide/resource_quota_management/index.html index dc36deca081..17ce7682f64 100644 --- a/docs/0.10.0/user_guide/resource_quota_management/index.html +++ b/docs/0.10.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/sorting_policies/index.html b/docs/0.10.0/user_guide/sorting_policies/index.html index 026d3621cc9..71c29bcfdb3 100644 --- a/docs/0.10.0/user_guide/sorting_policies/index.html +++ b/docs/0.10.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/trouble_shooting/index.html b/docs/0.10.0/user_guide/trouble_shooting/index.html index 148bb13b735..100483396ce 100644 --- a/docs/0.10.0/user_guide/trouble_shooting/index.html +++ b/docs/0.10.0/user_guide/trouble_shooting/index.html @@ -4,7 +4,7 @@ Trouble Shooting | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/workloads/run_flink/index.html b/docs/0.10.0/user_guide/workloads/run_flink/index.html index fbbd958e62c..7071417ced6 100644 --- a/docs/0.10.0/user_guide/workloads/run_flink/index.html +++ b/docs/0.10.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/workloads/run_spark/index.html b/docs/0.10.0/user_guide/workloads/run_spark/index.html index 8395f98ca47..02b401f99d3 100644 --- a/docs/0.10.0/user_guide/workloads/run_spark/index.html +++ b/docs/0.10.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/0.10.0/user_guide/workloads/run_tf/index.html b/docs/0.10.0/user_guide/workloads/run_tf/index.html index 9ba2c40640f..bc07281b892 100644 --- a/docs/0.10.0/user_guide/workloads/run_tf/index.html +++ b/docs/0.10.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run Tensorflow Jobs | Apache YuniKorn - + diff --git a/docs/0.11.0/api/cluster/index.html b/docs/0.11.0/api/cluster/index.html index 9b1f1cd1f5d..ec117ed06da 100644 --- a/docs/0.11.0/api/cluster/index.html +++ b/docs/0.11.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/0.11.0/api/scheduler/index.html b/docs/0.11.0/api/scheduler/index.html index f03110cad9d..39fb6ac2d50 100644 --- a/docs/0.11.0/api/scheduler/index.html +++ b/docs/0.11.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/0.11.0/api/system/index.html b/docs/0.11.0/api/system/index.html index 95a9134510e..404344f6aac 100644 --- a/docs/0.11.0/api/system/index.html +++ b/docs/0.11.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/0.11.0/design/architecture/index.html b/docs/0.11.0/design/architecture/index.html index 8001181dbc7..9d6ce861003 100644 --- a/docs/0.11.0/design/architecture/index.html +++ b/docs/0.11.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/0.11.0/design/cache_removal/index.html b/docs/0.11.0/design/cache_removal/index.html index b5f4a88595e..45165a62564 100644 --- a/docs/0.11.0/design/cache_removal/index.html +++ b/docs/0.11.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/0.11.0/design/cross_queue_preemption/index.html b/docs/0.11.0/design/cross_queue_preemption/index.html index 88922b1036b..26c7cbf433a 100644 --- a/docs/0.11.0/design/cross_queue_preemption/index.html +++ b/docs/0.11.0/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/0.11.0/design/gang_scheduling/index.html b/docs/0.11.0/design/gang_scheduling/index.html index 99ad892d5ed..d044af82e89 100644 --- a/docs/0.11.0/design/gang_scheduling/index.html +++ b/docs/0.11.0/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/0.11.0/design/k8shim/index.html b/docs/0.11.0/design/k8shim/index.html index ffa60a46015..b7e1156c159 100644 --- a/docs/0.11.0/design/k8shim/index.html +++ b/docs/0.11.0/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/0.11.0/design/namespace_resource_quota/index.html b/docs/0.11.0/design/namespace_resource_quota/index.html index 0b8245dd505..ceccee15227 100644 --- a/docs/0.11.0/design/namespace_resource_quota/index.html +++ b/docs/0.11.0/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/0.11.0/design/pluggable_app_management/index.html b/docs/0.11.0/design/pluggable_app_management/index.html index 1f33861f65e..127aa14745a 100644 --- a/docs/0.11.0/design/pluggable_app_management/index.html +++ b/docs/0.11.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/0.11.0/design/predicates/index.html b/docs/0.11.0/design/predicates/index.html index 0f859cb2b3a..3e639970819 100644 --- a/docs/0.11.0/design/predicates/index.html +++ b/docs/0.11.0/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/0.11.0/design/resilience/index.html b/docs/0.11.0/design/resilience/index.html index a0ebdf2a2f6..faaa5e1ddd8 100644 --- a/docs/0.11.0/design/resilience/index.html +++ b/docs/0.11.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/0.11.0/design/scheduler_configuration/index.html b/docs/0.11.0/design/scheduler_configuration/index.html index 3ed4db432a4..76314e8971c 100644 --- a/docs/0.11.0/design/scheduler_configuration/index.html +++ b/docs/0.11.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/0.11.0/design/scheduler_core_design/index.html b/docs/0.11.0/design/scheduler_core_design/index.html index e26f2fbaab5..a0464be3718 100644 --- a/docs/0.11.0/design/scheduler_core_design/index.html +++ b/docs/0.11.0/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/0.11.0/design/scheduler_object_states/index.html b/docs/0.11.0/design/scheduler_object_states/index.html index d1ba5669a97..08eea9469c5 100644 --- a/docs/0.11.0/design/scheduler_object_states/index.html +++ b/docs/0.11.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/0.11.0/design/state_aware_scheduling/index.html b/docs/0.11.0/design/state_aware_scheduling/index.html index d2e5804fd2d..4d2ec28bb35 100644 --- a/docs/0.11.0/design/state_aware_scheduling/index.html +++ b/docs/0.11.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/0.11.0/developer_guide/build/index.html b/docs/0.11.0/developer_guide/build/index.html index 77079d73a27..3b8f7cbca9e 100644 --- a/docs/0.11.0/developer_guide/build/index.html +++ b/docs/0.11.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/0.11.0/developer_guide/deployment/index.html b/docs/0.11.0/developer_guide/deployment/index.html index fd5537a2837..74b989ae6f2 100644 --- a/docs/0.11.0/developer_guide/deployment/index.html +++ b/docs/0.11.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/0.11.0/developer_guide/env_setup/index.html b/docs/0.11.0/developer_guide/env_setup/index.html index b709ec37d8f..cc0f23d09d9 100644 --- a/docs/0.11.0/developer_guide/env_setup/index.html +++ b/docs/0.11.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/0.11.0/developer_guide/openshift_development/index.html b/docs/0.11.0/developer_guide/openshift_development/index.html index 38b1ab60466..f2b8642289b 100644 --- a/docs/0.11.0/developer_guide/openshift_development/index.html +++ b/docs/0.11.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/0.11.0/get_started/core_features/index.html b/docs/0.11.0/get_started/core_features/index.html index fc23401fd08..2d324d9ae38 100644 --- a/docs/0.11.0/get_started/core_features/index.html +++ b/docs/0.11.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/0.11.0/index.html b/docs/0.11.0/index.html index 7f68f6c846e..d17c4c274bb 100644 --- a/docs/0.11.0/index.html +++ b/docs/0.11.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/0.11.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/0.11.0/performance/evaluate_perf_function_with_kubemark/index.html index c88ade8c96e..d5d0479ac02 100644 --- a/docs/0.11.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/0.11.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn function & performance with Kubemark | Apache YuniKorn - + diff --git a/docs/0.11.0/performance/metrics/index.html b/docs/0.11.0/performance/metrics/index.html index ab21cc2809e..9e12616cfcb 100644 --- a/docs/0.11.0/performance/metrics/index.html +++ b/docs/0.11.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/0.11.0/performance/profiling/index.html b/docs/0.11.0/performance/profiling/index.html index 04f84ad06d5..e830f952464 100644 --- a/docs/0.11.0/performance/profiling/index.html +++ b/docs/0.11.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/acls/index.html b/docs/0.11.0/user_guide/acls/index.html index db5a3f9c672..22bf66e34fb 100644 --- a/docs/0.11.0/user_guide/acls/index.html +++ b/docs/0.11.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/gang_scheduling/index.html b/docs/0.11.0/user_guide/gang_scheduling/index.html index f5090217b77..6b8c4f8b195 100644 --- a/docs/0.11.0/user_guide/gang_scheduling/index.html +++ b/docs/0.11.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/placement_rules/index.html b/docs/0.11.0/user_guide/placement_rules/index.html index 8d9ec5a83d3..2d273d8df2e 100644 --- a/docs/0.11.0/user_guide/placement_rules/index.html +++ b/docs/0.11.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/queue_config/index.html b/docs/0.11.0/user_guide/queue_config/index.html index b2c00127ba4..48718d15730 100644 --- a/docs/0.11.0/user_guide/queue_config/index.html +++ b/docs/0.11.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/resource_quota_management/index.html b/docs/0.11.0/user_guide/resource_quota_management/index.html index 7175463347f..41169f16614 100644 --- a/docs/0.11.0/user_guide/resource_quota_management/index.html +++ b/docs/0.11.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/sorting_policies/index.html b/docs/0.11.0/user_guide/sorting_policies/index.html index f2fbae98209..dc026edf98a 100644 --- a/docs/0.11.0/user_guide/sorting_policies/index.html +++ b/docs/0.11.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/trouble_shooting/index.html b/docs/0.11.0/user_guide/trouble_shooting/index.html index be6df766472..6dc006555ff 100644 --- a/docs/0.11.0/user_guide/trouble_shooting/index.html +++ b/docs/0.11.0/user_guide/trouble_shooting/index.html @@ -4,7 +4,7 @@ Trouble Shooting | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/usergroup_resolution/index.html b/docs/0.11.0/user_guide/usergroup_resolution/index.html index f5a5e4cb17c..8b16711b299 100644 --- a/docs/0.11.0/user_guide/usergroup_resolution/index.html +++ b/docs/0.11.0/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/workloads/run_flink/index.html b/docs/0.11.0/user_guide/workloads/run_flink/index.html index c451b018ec8..e5e679b26c1 100644 --- a/docs/0.11.0/user_guide/workloads/run_flink/index.html +++ b/docs/0.11.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/workloads/run_spark/index.html b/docs/0.11.0/user_guide/workloads/run_spark/index.html index 6791d033b31..14eaf101aef 100644 --- a/docs/0.11.0/user_guide/workloads/run_spark/index.html +++ b/docs/0.11.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/0.11.0/user_guide/workloads/run_tf/index.html b/docs/0.11.0/user_guide/workloads/run_tf/index.html index b5f6c91ae5d..c0a475692f7 100644 --- a/docs/0.11.0/user_guide/workloads/run_tf/index.html +++ b/docs/0.11.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run Tensorflow Jobs | Apache YuniKorn - + diff --git a/docs/0.12.1/api/cluster/index.html b/docs/0.12.1/api/cluster/index.html index 125c9e73eba..c2db10c8e35 100644 --- a/docs/0.12.1/api/cluster/index.html +++ b/docs/0.12.1/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/0.12.1/api/scheduler/index.html b/docs/0.12.1/api/scheduler/index.html index 2dd6d292fcf..d5db61fe3e3 100644 --- a/docs/0.12.1/api/scheduler/index.html +++ b/docs/0.12.1/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/0.12.1/api/system/index.html b/docs/0.12.1/api/system/index.html index 6746d45b89a..6f33bc11b92 100644 --- a/docs/0.12.1/api/system/index.html +++ b/docs/0.12.1/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/0.12.1/design/architecture/index.html b/docs/0.12.1/design/architecture/index.html index 87a55644568..446537fd2f2 100644 --- a/docs/0.12.1/design/architecture/index.html +++ b/docs/0.12.1/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/0.12.1/design/cache_removal/index.html b/docs/0.12.1/design/cache_removal/index.html index a060b737253..f77a86957ac 100644 --- a/docs/0.12.1/design/cache_removal/index.html +++ b/docs/0.12.1/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/0.12.1/design/cross_queue_preemption/index.html b/docs/0.12.1/design/cross_queue_preemption/index.html index e3953b40cab..0e974c8c24a 100644 --- a/docs/0.12.1/design/cross_queue_preemption/index.html +++ b/docs/0.12.1/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/0.12.1/design/gang_scheduling/index.html b/docs/0.12.1/design/gang_scheduling/index.html index 2d165364973..5c85c97abcf 100644 --- a/docs/0.12.1/design/gang_scheduling/index.html +++ b/docs/0.12.1/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/0.12.1/design/k8shim/index.html b/docs/0.12.1/design/k8shim/index.html index 12766cb0494..cf441408b1a 100644 --- a/docs/0.12.1/design/k8shim/index.html +++ b/docs/0.12.1/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/0.12.1/design/namespace_resource_quota/index.html b/docs/0.12.1/design/namespace_resource_quota/index.html index c8742b57faa..12e54a69463 100644 --- a/docs/0.12.1/design/namespace_resource_quota/index.html +++ b/docs/0.12.1/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/0.12.1/design/pluggable_app_management/index.html b/docs/0.12.1/design/pluggable_app_management/index.html index eb3fcba40c2..e590e8975d0 100644 --- a/docs/0.12.1/design/pluggable_app_management/index.html +++ b/docs/0.12.1/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/0.12.1/design/predicates/index.html b/docs/0.12.1/design/predicates/index.html index 9dd752b129f..e6038aa823d 100644 --- a/docs/0.12.1/design/predicates/index.html +++ b/docs/0.12.1/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/0.12.1/design/resilience/index.html b/docs/0.12.1/design/resilience/index.html index 40bae49bdef..f3fbdecb276 100644 --- a/docs/0.12.1/design/resilience/index.html +++ b/docs/0.12.1/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/0.12.1/design/scheduler_configuration/index.html b/docs/0.12.1/design/scheduler_configuration/index.html index 9dd640bc06a..cffe60992d9 100644 --- a/docs/0.12.1/design/scheduler_configuration/index.html +++ b/docs/0.12.1/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/0.12.1/design/scheduler_core_design/index.html b/docs/0.12.1/design/scheduler_core_design/index.html index dd44e8f4174..76865c9bb95 100644 --- a/docs/0.12.1/design/scheduler_core_design/index.html +++ b/docs/0.12.1/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/0.12.1/design/scheduler_object_states/index.html b/docs/0.12.1/design/scheduler_object_states/index.html index 067f19890f6..e33fa1c8195 100644 --- a/docs/0.12.1/design/scheduler_object_states/index.html +++ b/docs/0.12.1/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/0.12.1/design/state_aware_scheduling/index.html b/docs/0.12.1/design/state_aware_scheduling/index.html index b19a2c27310..59260140c52 100644 --- a/docs/0.12.1/design/state_aware_scheduling/index.html +++ b/docs/0.12.1/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/0.12.1/developer_guide/build/index.html b/docs/0.12.1/developer_guide/build/index.html index ed25972d08f..81232a40c99 100644 --- a/docs/0.12.1/developer_guide/build/index.html +++ b/docs/0.12.1/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/0.12.1/developer_guide/deployment/index.html b/docs/0.12.1/developer_guide/deployment/index.html index e5d72580b96..5ca909deefd 100644 --- a/docs/0.12.1/developer_guide/deployment/index.html +++ b/docs/0.12.1/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/0.12.1/developer_guide/env_setup/index.html b/docs/0.12.1/developer_guide/env_setup/index.html index fcec833455b..53b87c3bb35 100644 --- a/docs/0.12.1/developer_guide/env_setup/index.html +++ b/docs/0.12.1/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/0.12.1/developer_guide/openshift_development/index.html b/docs/0.12.1/developer_guide/openshift_development/index.html index 438b18f9ed0..37900ce7729 100644 --- a/docs/0.12.1/developer_guide/openshift_development/index.html +++ b/docs/0.12.1/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/0.12.1/get_started/core_features/index.html b/docs/0.12.1/get_started/core_features/index.html index 2ca48d630d3..e2c69c62505 100644 --- a/docs/0.12.1/get_started/core_features/index.html +++ b/docs/0.12.1/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/0.12.1/index.html b/docs/0.12.1/index.html index 13c5aeb6b2c..6e571807e8e 100644 --- a/docs/0.12.1/index.html +++ b/docs/0.12.1/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/0.12.1/performance/evaluate_perf_function_with_kubemark/index.html b/docs/0.12.1/performance/evaluate_perf_function_with_kubemark/index.html index 938ac6407a7..121476f5218 100644 --- a/docs/0.12.1/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/0.12.1/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/0.12.1/performance/metrics/index.html b/docs/0.12.1/performance/metrics/index.html index b9d3d9a6926..cf10aad79f6 100644 --- a/docs/0.12.1/performance/metrics/index.html +++ b/docs/0.12.1/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/0.12.1/performance/performance_tutorial/index.html b/docs/0.12.1/performance/performance_tutorial/index.html index bec0d57c7bd..8f7a1ce38f4 100644 --- a/docs/0.12.1/performance/performance_tutorial/index.html +++ b/docs/0.12.1/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/0.12.1/performance/profiling/index.html b/docs/0.12.1/performance/profiling/index.html index 721f432a29a..9668d28bf4b 100644 --- a/docs/0.12.1/performance/profiling/index.html +++ b/docs/0.12.1/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/acls/index.html b/docs/0.12.1/user_guide/acls/index.html index 5d76bf567cd..a0ea73e9f0a 100644 --- a/docs/0.12.1/user_guide/acls/index.html +++ b/docs/0.12.1/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/gang_scheduling/index.html b/docs/0.12.1/user_guide/gang_scheduling/index.html index 367b1b82540..0b7381db06c 100644 --- a/docs/0.12.1/user_guide/gang_scheduling/index.html +++ b/docs/0.12.1/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/placement_rules/index.html b/docs/0.12.1/user_guide/placement_rules/index.html index 8979c37ac7d..15abffac6e1 100644 --- a/docs/0.12.1/user_guide/placement_rules/index.html +++ b/docs/0.12.1/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/queue_config/index.html b/docs/0.12.1/user_guide/queue_config/index.html index 8a4563288cd..b4ad7477ffd 100644 --- a/docs/0.12.1/user_guide/queue_config/index.html +++ b/docs/0.12.1/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/resource_quota_management/index.html b/docs/0.12.1/user_guide/resource_quota_management/index.html index 1251c8af435..9bce450e6a3 100644 --- a/docs/0.12.1/user_guide/resource_quota_management/index.html +++ b/docs/0.12.1/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/sorting_policies/index.html b/docs/0.12.1/user_guide/sorting_policies/index.html index c41846dc8fb..204648eef6c 100644 --- a/docs/0.12.1/user_guide/sorting_policies/index.html +++ b/docs/0.12.1/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/trouble_shooting/index.html b/docs/0.12.1/user_guide/trouble_shooting/index.html index 1e6dca89a3b..37bba53b1d5 100644 --- a/docs/0.12.1/user_guide/trouble_shooting/index.html +++ b/docs/0.12.1/user_guide/trouble_shooting/index.html @@ -4,7 +4,7 @@ Trouble Shooting | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/usergroup_resolution/index.html b/docs/0.12.1/user_guide/usergroup_resolution/index.html index ec106cd556b..953b9c6f2ea 100644 --- a/docs/0.12.1/user_guide/usergroup_resolution/index.html +++ b/docs/0.12.1/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/workloads/run_flink/index.html b/docs/0.12.1/user_guide/workloads/run_flink/index.html index 5c23afe9435..10b23abe3ed 100644 --- a/docs/0.12.1/user_guide/workloads/run_flink/index.html +++ b/docs/0.12.1/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/workloads/run_spark/index.html b/docs/0.12.1/user_guide/workloads/run_spark/index.html index b10e121b5cb..9a1411f317b 100644 --- a/docs/0.12.1/user_guide/workloads/run_spark/index.html +++ b/docs/0.12.1/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/0.12.1/user_guide/workloads/run_tf/index.html b/docs/0.12.1/user_guide/workloads/run_tf/index.html index 29ed0ed2a0f..281a5223c4e 100644 --- a/docs/0.12.1/user_guide/workloads/run_tf/index.html +++ b/docs/0.12.1/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/0.12.2/api/cluster/index.html b/docs/0.12.2/api/cluster/index.html index 2bca75008f4..ea954f96a39 100644 --- a/docs/0.12.2/api/cluster/index.html +++ b/docs/0.12.2/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/0.12.2/api/scheduler/index.html b/docs/0.12.2/api/scheduler/index.html index 3f13f508dc4..7c47e3608d9 100644 --- a/docs/0.12.2/api/scheduler/index.html +++ b/docs/0.12.2/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/0.12.2/api/system/index.html b/docs/0.12.2/api/system/index.html index 4ca90f35d52..3d685e7d6e8 100644 --- a/docs/0.12.2/api/system/index.html +++ b/docs/0.12.2/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/0.12.2/design/architecture/index.html b/docs/0.12.2/design/architecture/index.html index d8a02ebceb3..db7d01f5edd 100644 --- a/docs/0.12.2/design/architecture/index.html +++ b/docs/0.12.2/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/0.12.2/design/cache_removal/index.html b/docs/0.12.2/design/cache_removal/index.html index 19eb44146e6..59bcdfb980f 100644 --- a/docs/0.12.2/design/cache_removal/index.html +++ b/docs/0.12.2/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/0.12.2/design/cross_queue_preemption/index.html b/docs/0.12.2/design/cross_queue_preemption/index.html index 4060be78727..a6d319373f1 100644 --- a/docs/0.12.2/design/cross_queue_preemption/index.html +++ b/docs/0.12.2/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/0.12.2/design/gang_scheduling/index.html b/docs/0.12.2/design/gang_scheduling/index.html index 8cbe256d2cb..6aee2bde9d1 100644 --- a/docs/0.12.2/design/gang_scheduling/index.html +++ b/docs/0.12.2/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/0.12.2/design/k8shim/index.html b/docs/0.12.2/design/k8shim/index.html index 7c425fd2c78..08be970dfa5 100644 --- a/docs/0.12.2/design/k8shim/index.html +++ b/docs/0.12.2/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/0.12.2/design/namespace_resource_quota/index.html b/docs/0.12.2/design/namespace_resource_quota/index.html index 60149e80ebd..1d93e74f546 100644 --- a/docs/0.12.2/design/namespace_resource_quota/index.html +++ b/docs/0.12.2/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/0.12.2/design/pluggable_app_management/index.html b/docs/0.12.2/design/pluggable_app_management/index.html index f84ec38f7c5..e9d3e69aaa0 100644 --- a/docs/0.12.2/design/pluggable_app_management/index.html +++ b/docs/0.12.2/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/0.12.2/design/predicates/index.html b/docs/0.12.2/design/predicates/index.html index 7591fe68962..5fc56d0e996 100644 --- a/docs/0.12.2/design/predicates/index.html +++ b/docs/0.12.2/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/0.12.2/design/resilience/index.html b/docs/0.12.2/design/resilience/index.html index a487ed83e23..4a95f6cf1a9 100644 --- a/docs/0.12.2/design/resilience/index.html +++ b/docs/0.12.2/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/0.12.2/design/scheduler_configuration/index.html b/docs/0.12.2/design/scheduler_configuration/index.html index 3b06b8ae239..87e94af92eb 100644 --- a/docs/0.12.2/design/scheduler_configuration/index.html +++ b/docs/0.12.2/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/0.12.2/design/scheduler_core_design/index.html b/docs/0.12.2/design/scheduler_core_design/index.html index 0ffdf2ff1c3..6bf5675f331 100644 --- a/docs/0.12.2/design/scheduler_core_design/index.html +++ b/docs/0.12.2/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/0.12.2/design/scheduler_object_states/index.html b/docs/0.12.2/design/scheduler_object_states/index.html index ceb7f2bea30..063644106c6 100644 --- a/docs/0.12.2/design/scheduler_object_states/index.html +++ b/docs/0.12.2/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/0.12.2/design/state_aware_scheduling/index.html b/docs/0.12.2/design/state_aware_scheduling/index.html index 77231465d07..b01c0cd328b 100644 --- a/docs/0.12.2/design/state_aware_scheduling/index.html +++ b/docs/0.12.2/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/0.12.2/developer_guide/build/index.html b/docs/0.12.2/developer_guide/build/index.html index be826f0f2fa..2e309d2db55 100644 --- a/docs/0.12.2/developer_guide/build/index.html +++ b/docs/0.12.2/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/0.12.2/developer_guide/deployment/index.html b/docs/0.12.2/developer_guide/deployment/index.html index 190b75ab953..221f77540b1 100644 --- a/docs/0.12.2/developer_guide/deployment/index.html +++ b/docs/0.12.2/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/0.12.2/developer_guide/env_setup/index.html b/docs/0.12.2/developer_guide/env_setup/index.html index 581d471b853..24d0f1428c6 100644 --- a/docs/0.12.2/developer_guide/env_setup/index.html +++ b/docs/0.12.2/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/0.12.2/developer_guide/openshift_development/index.html b/docs/0.12.2/developer_guide/openshift_development/index.html index d0d5d857428..50765214e27 100644 --- a/docs/0.12.2/developer_guide/openshift_development/index.html +++ b/docs/0.12.2/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/0.12.2/get_started/core_features/index.html b/docs/0.12.2/get_started/core_features/index.html index c6f33661639..809d1176564 100644 --- a/docs/0.12.2/get_started/core_features/index.html +++ b/docs/0.12.2/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/0.12.2/index.html b/docs/0.12.2/index.html index 8b6a7cb01dd..ce3506895a2 100644 --- a/docs/0.12.2/index.html +++ b/docs/0.12.2/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/0.12.2/performance/evaluate_perf_function_with_kubemark/index.html b/docs/0.12.2/performance/evaluate_perf_function_with_kubemark/index.html index e75e8f4312a..280bed8616d 100644 --- a/docs/0.12.2/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/0.12.2/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/0.12.2/performance/metrics/index.html b/docs/0.12.2/performance/metrics/index.html index e6bb7b04e54..c49e15fb6d9 100644 --- a/docs/0.12.2/performance/metrics/index.html +++ b/docs/0.12.2/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/0.12.2/performance/performance_tutorial/index.html b/docs/0.12.2/performance/performance_tutorial/index.html index 5f5aa009617..783393e9fa1 100644 --- a/docs/0.12.2/performance/performance_tutorial/index.html +++ b/docs/0.12.2/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/0.12.2/performance/profiling/index.html b/docs/0.12.2/performance/profiling/index.html index ea4d179d8cb..c52172f5790 100644 --- a/docs/0.12.2/performance/profiling/index.html +++ b/docs/0.12.2/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/acls/index.html b/docs/0.12.2/user_guide/acls/index.html index d40d7a2e780..e2e6ad4d346 100644 --- a/docs/0.12.2/user_guide/acls/index.html +++ b/docs/0.12.2/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/gang_scheduling/index.html b/docs/0.12.2/user_guide/gang_scheduling/index.html index 37828a1484b..7177e61fc0e 100644 --- a/docs/0.12.2/user_guide/gang_scheduling/index.html +++ b/docs/0.12.2/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/placement_rules/index.html b/docs/0.12.2/user_guide/placement_rules/index.html index ec7f31aeff1..de8cd44c4ca 100644 --- a/docs/0.12.2/user_guide/placement_rules/index.html +++ b/docs/0.12.2/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/queue_config/index.html b/docs/0.12.2/user_guide/queue_config/index.html index e106885750c..69893805652 100644 --- a/docs/0.12.2/user_guide/queue_config/index.html +++ b/docs/0.12.2/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/resource_quota_management/index.html b/docs/0.12.2/user_guide/resource_quota_management/index.html index cc3e383407d..ed32e9f51d3 100644 --- a/docs/0.12.2/user_guide/resource_quota_management/index.html +++ b/docs/0.12.2/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/sorting_policies/index.html b/docs/0.12.2/user_guide/sorting_policies/index.html index 1f213695eef..2030bdb1a68 100644 --- a/docs/0.12.2/user_guide/sorting_policies/index.html +++ b/docs/0.12.2/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/trouble_shooting/index.html b/docs/0.12.2/user_guide/trouble_shooting/index.html index 17a607f7f92..0e4ac3ba8de 100644 --- a/docs/0.12.2/user_guide/trouble_shooting/index.html +++ b/docs/0.12.2/user_guide/trouble_shooting/index.html @@ -4,7 +4,7 @@ Trouble Shooting | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/usergroup_resolution/index.html b/docs/0.12.2/user_guide/usergroup_resolution/index.html index 8fc595ab419..29ee6647de2 100644 --- a/docs/0.12.2/user_guide/usergroup_resolution/index.html +++ b/docs/0.12.2/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/workloads/run_flink/index.html b/docs/0.12.2/user_guide/workloads/run_flink/index.html index 79988f8247c..322b397ff16 100644 --- a/docs/0.12.2/user_guide/workloads/run_flink/index.html +++ b/docs/0.12.2/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/workloads/run_spark/index.html b/docs/0.12.2/user_guide/workloads/run_spark/index.html index f89495b3375..eac04e65726 100644 --- a/docs/0.12.2/user_guide/workloads/run_spark/index.html +++ b/docs/0.12.2/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/0.12.2/user_guide/workloads/run_tf/index.html b/docs/0.12.2/user_guide/workloads/run_tf/index.html index 60025c7b97b..75cac78531e 100644 --- a/docs/0.12.2/user_guide/workloads/run_tf/index.html +++ b/docs/0.12.2/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/0.8.0/community/coding_guidelines/index.html b/docs/0.8.0/community/coding_guidelines/index.html index 05b2d01bead..b26f05eeaac 100644 --- a/docs/0.8.0/community/coding_guidelines/index.html +++ b/docs/0.8.0/community/coding_guidelines/index.html @@ -4,7 +4,7 @@ Coding Guidelines | Apache YuniKorn - + diff --git a/docs/0.8.0/community/community_sync_up/index.html b/docs/0.8.0/community/community_sync_up/index.html index 733f57c38da..238820147b6 100644 --- a/docs/0.8.0/community/community_sync_up/index.html +++ b/docs/0.8.0/community/community_sync_up/index.html @@ -4,7 +4,7 @@ Community Sync Up | Apache YuniKorn - + diff --git a/docs/0.8.0/community/how_to_contribute/index.html b/docs/0.8.0/community/how_to_contribute/index.html index bbc2f13bff7..ad9958593e4 100644 --- a/docs/0.8.0/community/how_to_contribute/index.html +++ b/docs/0.8.0/community/how_to_contribute/index.html @@ -4,7 +4,7 @@ How To Contribute | Apache YuniKorn - + diff --git a/docs/0.8.0/community/reporting_issues/index.html b/docs/0.8.0/community/reporting_issues/index.html index 338d117c9c5..5056e67a5d4 100644 --- a/docs/0.8.0/community/reporting_issues/index.html +++ b/docs/0.8.0/community/reporting_issues/index.html @@ -4,7 +4,7 @@ Reporting Issues | Apache YuniKorn - + diff --git a/docs/0.8.0/configuration/acls/index.html b/docs/0.8.0/configuration/acls/index.html index cfa61f570e4..7164c511de2 100644 --- a/docs/0.8.0/configuration/acls/index.html +++ b/docs/0.8.0/configuration/acls/index.html @@ -4,7 +4,7 @@ Acls | Apache YuniKorn - + diff --git a/docs/0.8.0/configuration/placement_rules/index.html b/docs/0.8.0/configuration/placement_rules/index.html index 8c7c233d82d..6a25d54b82c 100644 --- a/docs/0.8.0/configuration/placement_rules/index.html +++ b/docs/0.8.0/configuration/placement_rules/index.html @@ -4,7 +4,7 @@ Placement Rules | Apache YuniKorn - + diff --git a/docs/0.8.0/configuration/queue_config/index.html b/docs/0.8.0/configuration/queue_config/index.html index 0c027c0192a..078b7502a14 100644 --- a/docs/0.8.0/configuration/queue_config/index.html +++ b/docs/0.8.0/configuration/queue_config/index.html @@ -4,7 +4,7 @@ Queue Config | Apache YuniKorn - + diff --git a/docs/0.8.0/design/cross_queue_preemption/index.html b/docs/0.8.0/design/cross_queue_preemption/index.html index ddfc964a9cc..d6825056173 100644 --- a/docs/0.8.0/design/cross_queue_preemption/index.html +++ b/docs/0.8.0/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/0.8.0/design/index.html b/docs/0.8.0/design/index.html index 520bf829c2b..0c72e333cb5 100644 --- a/docs/0.8.0/design/index.html +++ b/docs/0.8.0/design/index.html @@ -4,7 +4,7 @@ Design | Apache YuniKorn - + diff --git a/docs/0.8.0/design/namespace_resource_quota/index.html b/docs/0.8.0/design/namespace_resource_quota/index.html index 1fc33f55990..42d60079df7 100644 --- a/docs/0.8.0/design/namespace_resource_quota/index.html +++ b/docs/0.8.0/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/0.8.0/design/pluggable_app_management/index.html b/docs/0.8.0/design/pluggable_app_management/index.html index bc788fc391b..009c8712818 100644 --- a/docs/0.8.0/design/pluggable_app_management/index.html +++ b/docs/0.8.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/0.8.0/design/resilience/index.html b/docs/0.8.0/design/resilience/index.html index 96dddb1336c..82dd7154b71 100644 --- a/docs/0.8.0/design/resilience/index.html +++ b/docs/0.8.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/0.8.0/design/scheduler_configuration/index.html b/docs/0.8.0/design/scheduler_configuration/index.html index 17b5c1d0c0a..8d74c42c4c5 100644 --- a/docs/0.8.0/design/scheduler_configuration/index.html +++ b/docs/0.8.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/0.8.0/get_started/developer_guide/index.html b/docs/0.8.0/get_started/developer_guide/index.html index 3f11dfd23b8..66250f1bc1b 100644 --- a/docs/0.8.0/get_started/developer_guide/index.html +++ b/docs/0.8.0/get_started/developer_guide/index.html @@ -4,7 +4,7 @@ Developer Guide | Apache YuniKorn - + diff --git a/docs/0.8.0/index.html b/docs/0.8.0/index.html index cd6907acb33..c4150237efd 100644 --- a/docs/0.8.0/index.html +++ b/docs/0.8.0/index.html @@ -4,7 +4,7 @@ User Guide | Apache YuniKorn - + diff --git a/docs/0.8.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/0.8.0/performance/evaluate_perf_function_with_kubemark/index.html index e04a1a89191..8daed4b7e09 100644 --- a/docs/0.8.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/0.8.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Perf With Kubemark | Apache YuniKorn - + diff --git a/docs/0.8.0/performance/metrics/index.html b/docs/0.8.0/performance/metrics/index.html index 6a13483182e..d57b6f48402 100644 --- a/docs/0.8.0/performance/metrics/index.html +++ b/docs/0.8.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Metrics | Apache YuniKorn - + diff --git a/docs/0.8.0/performance/profiling/index.html b/docs/0.8.0/performance/profiling/index.html index db230134029..fdbcef0e040 100644 --- a/docs/0.8.0/performance/profiling/index.html +++ b/docs/0.8.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/0.8.0/setup/build_local/index.html b/docs/0.8.0/setup/build_local/index.html index ea0b34ac86e..c84addf229d 100644 --- a/docs/0.8.0/setup/build_local/index.html +++ b/docs/0.8.0/setup/build_local/index.html @@ -4,7 +4,7 @@ Build Local | Apache YuniKorn - + diff --git a/docs/0.8.0/setup/configure_scheduler/index.html b/docs/0.8.0/setup/configure_scheduler/index.html index e22e76a4159..b4cca727519 100644 --- a/docs/0.8.0/setup/configure_scheduler/index.html +++ b/docs/0.8.0/setup/configure_scheduler/index.html @@ -4,7 +4,7 @@ Configure Scheduler | Apache YuniKorn - + diff --git a/docs/0.8.0/setup/deployment/index.html b/docs/0.8.0/setup/deployment/index.html index f262319b600..ce6399dd8a3 100644 --- a/docs/0.8.0/setup/deployment/index.html +++ b/docs/0.8.0/setup/deployment/index.html @@ -4,7 +4,7 @@ Deployment Guide | Apache YuniKorn - + diff --git a/docs/0.8.0/setup/env_setup/index.html b/docs/0.8.0/setup/env_setup/index.html index df5439cdd9a..3a6d6744e19 100644 --- a/docs/0.8.0/setup/env_setup/index.html +++ b/docs/0.8.0/setup/env_setup/index.html @@ -4,7 +4,7 @@ Environment Setup | Apache YuniKorn - + diff --git a/docs/0.9.0/api/cluster/index.html b/docs/0.9.0/api/cluster/index.html index f2bfca1f816..5e780a93acb 100644 --- a/docs/0.9.0/api/cluster/index.html +++ b/docs/0.9.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/0.9.0/api/scheduler/index.html b/docs/0.9.0/api/scheduler/index.html index 270a69391fb..03c2fd5dcaf 100644 --- a/docs/0.9.0/api/scheduler/index.html +++ b/docs/0.9.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/0.9.0/api/system/index.html b/docs/0.9.0/api/system/index.html index cf2ba1ae7e7..24012db83f1 100644 --- a/docs/0.9.0/api/system/index.html +++ b/docs/0.9.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/0.9.0/design/architecture/index.html b/docs/0.9.0/design/architecture/index.html index f888e5995d5..0306a449a40 100644 --- a/docs/0.9.0/design/architecture/index.html +++ b/docs/0.9.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/0.9.0/design/cross_queue_preemption/index.html b/docs/0.9.0/design/cross_queue_preemption/index.html index ea4694625f3..bcf1deaf247 100644 --- a/docs/0.9.0/design/cross_queue_preemption/index.html +++ b/docs/0.9.0/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/0.9.0/design/k8shim/index.html b/docs/0.9.0/design/k8shim/index.html index 512f34487ba..5093d93fbe4 100644 --- a/docs/0.9.0/design/k8shim/index.html +++ b/docs/0.9.0/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/0.9.0/design/namespace_resource_quota/index.html b/docs/0.9.0/design/namespace_resource_quota/index.html index c0b41789fa2..7114b652a56 100644 --- a/docs/0.9.0/design/namespace_resource_quota/index.html +++ b/docs/0.9.0/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/0.9.0/design/pluggable_app_management/index.html b/docs/0.9.0/design/pluggable_app_management/index.html index a32302bcaa6..12e7f0ffb73 100644 --- a/docs/0.9.0/design/pluggable_app_management/index.html +++ b/docs/0.9.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/0.9.0/design/predicates/index.html b/docs/0.9.0/design/predicates/index.html index 27876c21a84..8aa85d7115e 100644 --- a/docs/0.9.0/design/predicates/index.html +++ b/docs/0.9.0/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/0.9.0/design/resilience/index.html b/docs/0.9.0/design/resilience/index.html index 681593893b4..2660b1ea5bc 100644 --- a/docs/0.9.0/design/resilience/index.html +++ b/docs/0.9.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/0.9.0/design/scheduler_configuration/index.html b/docs/0.9.0/design/scheduler_configuration/index.html index 92e9c00b276..094a0e2ac56 100644 --- a/docs/0.9.0/design/scheduler_configuration/index.html +++ b/docs/0.9.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/0.9.0/design/scheduler_core_design/index.html b/docs/0.9.0/design/scheduler_core_design/index.html index f0b494ecac6..90364583303 100644 --- a/docs/0.9.0/design/scheduler_core_design/index.html +++ b/docs/0.9.0/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/0.9.0/design/scheduler_object_states/index.html b/docs/0.9.0/design/scheduler_object_states/index.html index 87a57651df3..d586ac1b765 100644 --- a/docs/0.9.0/design/scheduler_object_states/index.html +++ b/docs/0.9.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/0.9.0/design/state_aware_scheduling/index.html b/docs/0.9.0/design/state_aware_scheduling/index.html index 3596bcd8aa6..220dfb45191 100644 --- a/docs/0.9.0/design/state_aware_scheduling/index.html +++ b/docs/0.9.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/0.9.0/developer_guide/build/index.html b/docs/0.9.0/developer_guide/build/index.html index f00df2c5b86..446e63199eb 100644 --- a/docs/0.9.0/developer_guide/build/index.html +++ b/docs/0.9.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/0.9.0/developer_guide/deployment/index.html b/docs/0.9.0/developer_guide/deployment/index.html index f5cb4af2a81..c59a65e1a3a 100644 --- a/docs/0.9.0/developer_guide/deployment/index.html +++ b/docs/0.9.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/0.9.0/developer_guide/env_setup/index.html b/docs/0.9.0/developer_guide/env_setup/index.html index f4ed3e3e3c3..176bcae69ed 100644 --- a/docs/0.9.0/developer_guide/env_setup/index.html +++ b/docs/0.9.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/0.9.0/get_started/core_features/index.html b/docs/0.9.0/get_started/core_features/index.html index 3b42aed3ab4..0e6eec2ea45 100644 --- a/docs/0.9.0/get_started/core_features/index.html +++ b/docs/0.9.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/0.9.0/index.html b/docs/0.9.0/index.html index cf56dd12afd..47a90c1dd1b 100644 --- a/docs/0.9.0/index.html +++ b/docs/0.9.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/0.9.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/0.9.0/performance/evaluate_perf_function_with_kubemark/index.html index 02ff29936d3..74635fe115f 100644 --- a/docs/0.9.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/0.9.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn function & performance with Kubemark | Apache YuniKorn - + diff --git a/docs/0.9.0/performance/metrics/index.html b/docs/0.9.0/performance/metrics/index.html index 15a6c11f11b..476bc9b88e0 100644 --- a/docs/0.9.0/performance/metrics/index.html +++ b/docs/0.9.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/0.9.0/performance/profiling/index.html b/docs/0.9.0/performance/profiling/index.html index 9e7aa1bd382..8766e851ebc 100644 --- a/docs/0.9.0/performance/profiling/index.html +++ b/docs/0.9.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/acls/index.html b/docs/0.9.0/user_guide/acls/index.html index f48f99df06d..6dc90afab4a 100644 --- a/docs/0.9.0/user_guide/acls/index.html +++ b/docs/0.9.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/placement_rules/index.html b/docs/0.9.0/user_guide/placement_rules/index.html index 66bb7965a99..e1dd9ae7171 100644 --- a/docs/0.9.0/user_guide/placement_rules/index.html +++ b/docs/0.9.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/queue_config/index.html b/docs/0.9.0/user_guide/queue_config/index.html index a1e451a9026..aca12e06edd 100644 --- a/docs/0.9.0/user_guide/queue_config/index.html +++ b/docs/0.9.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/resource_quota_management/index.html b/docs/0.9.0/user_guide/resource_quota_management/index.html index 9c8ffdbfe80..71f79fd1104 100644 --- a/docs/0.9.0/user_guide/resource_quota_management/index.html +++ b/docs/0.9.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/sorting_policies/index.html b/docs/0.9.0/user_guide/sorting_policies/index.html index 0602e1e7642..2ee74afb3b5 100644 --- a/docs/0.9.0/user_guide/sorting_policies/index.html +++ b/docs/0.9.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/trouble_shooting/index.html b/docs/0.9.0/user_guide/trouble_shooting/index.html index b0138be192b..822a43a5460 100644 --- a/docs/0.9.0/user_guide/trouble_shooting/index.html +++ b/docs/0.9.0/user_guide/trouble_shooting/index.html @@ -4,7 +4,7 @@ Trouble Shooting | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/workloads/run_flink/index.html b/docs/0.9.0/user_guide/workloads/run_flink/index.html index 0ef0ffbc0fd..e9789c58db2 100644 --- a/docs/0.9.0/user_guide/workloads/run_flink/index.html +++ b/docs/0.9.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/workloads/run_spark/index.html b/docs/0.9.0/user_guide/workloads/run_spark/index.html index 478c15cad04..2a24580f634 100644 --- a/docs/0.9.0/user_guide/workloads/run_spark/index.html +++ b/docs/0.9.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/0.9.0/user_guide/workloads/run_tf/index.html b/docs/0.9.0/user_guide/workloads/run_tf/index.html index 57ca5acd7b7..3d5c69d4492 100644 --- a/docs/0.9.0/user_guide/workloads/run_tf/index.html +++ b/docs/0.9.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run Tensorflow Jobs | Apache YuniKorn - + diff --git a/docs/1.0.0/api/cluster/index.html b/docs/1.0.0/api/cluster/index.html index 477fa0290ff..4e797dcad68 100644 --- a/docs/1.0.0/api/cluster/index.html +++ b/docs/1.0.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/1.0.0/api/scheduler/index.html b/docs/1.0.0/api/scheduler/index.html index 2196fadfe7e..1b3bc6019f0 100644 --- a/docs/1.0.0/api/scheduler/index.html +++ b/docs/1.0.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.0.0/api/system/index.html b/docs/1.0.0/api/system/index.html index fcb1a599861..f33cf048abb 100644 --- a/docs/1.0.0/api/system/index.html +++ b/docs/1.0.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/1.0.0/design/architecture/index.html b/docs/1.0.0/design/architecture/index.html index edf90a065f7..09010772e0b 100644 --- a/docs/1.0.0/design/architecture/index.html +++ b/docs/1.0.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/1.0.0/design/cache_removal/index.html b/docs/1.0.0/design/cache_removal/index.html index f0c1132a597..c08d7400842 100644 --- a/docs/1.0.0/design/cache_removal/index.html +++ b/docs/1.0.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/1.0.0/design/cross_queue_preemption/index.html b/docs/1.0.0/design/cross_queue_preemption/index.html index 340496edb16..d239da9b961 100644 --- a/docs/1.0.0/design/cross_queue_preemption/index.html +++ b/docs/1.0.0/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/1.0.0/design/gang_scheduling/index.html b/docs/1.0.0/design/gang_scheduling/index.html index 9906500577a..d3c9a84db6f 100644 --- a/docs/1.0.0/design/gang_scheduling/index.html +++ b/docs/1.0.0/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/1.0.0/design/interface_message_simplication/index.html b/docs/1.0.0/design/interface_message_simplication/index.html index 8083803736f..d993bf9e89e 100644 --- a/docs/1.0.0/design/interface_message_simplication/index.html +++ b/docs/1.0.0/design/interface_message_simplication/index.html @@ -4,7 +4,7 @@ Simplyfing Interface Messages | Apache YuniKorn - + diff --git a/docs/1.0.0/design/k8shim/index.html b/docs/1.0.0/design/k8shim/index.html index 9c9a51d3f16..4a71ba15ec9 100644 --- a/docs/1.0.0/design/k8shim/index.html +++ b/docs/1.0.0/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/1.0.0/design/namespace_resource_quota/index.html b/docs/1.0.0/design/namespace_resource_quota/index.html index 30e49bf6229..57c146e7204 100644 --- a/docs/1.0.0/design/namespace_resource_quota/index.html +++ b/docs/1.0.0/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/1.0.0/design/pluggable_app_management/index.html b/docs/1.0.0/design/pluggable_app_management/index.html index e376c3def41..22d7492ab5c 100644 --- a/docs/1.0.0/design/pluggable_app_management/index.html +++ b/docs/1.0.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/1.0.0/design/predicates/index.html b/docs/1.0.0/design/predicates/index.html index b7e2b622f17..0eb767bc170 100644 --- a/docs/1.0.0/design/predicates/index.html +++ b/docs/1.0.0/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/1.0.0/design/resilience/index.html b/docs/1.0.0/design/resilience/index.html index 90fe41945a0..be7a46870c7 100644 --- a/docs/1.0.0/design/resilience/index.html +++ b/docs/1.0.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/1.0.0/design/scheduler_configuration/index.html b/docs/1.0.0/design/scheduler_configuration/index.html index 2569114d6b1..1b28580c57e 100644 --- a/docs/1.0.0/design/scheduler_configuration/index.html +++ b/docs/1.0.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/1.0.0/design/scheduler_core_design/index.html b/docs/1.0.0/design/scheduler_core_design/index.html index 42957c5e8a1..27e2b621fe5 100644 --- a/docs/1.0.0/design/scheduler_core_design/index.html +++ b/docs/1.0.0/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/1.0.0/design/scheduler_object_states/index.html b/docs/1.0.0/design/scheduler_object_states/index.html index 05fc535eb05..356cf1f10ba 100644 --- a/docs/1.0.0/design/scheduler_object_states/index.html +++ b/docs/1.0.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/1.0.0/design/scheduler_plugin/index.html b/docs/1.0.0/design/scheduler_plugin/index.html index 05a084d0ce4..f0c22a06149 100644 --- a/docs/1.0.0/design/scheduler_plugin/index.html +++ b/docs/1.0.0/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/1.0.0/design/state_aware_scheduling/index.html b/docs/1.0.0/design/state_aware_scheduling/index.html index 879f2006579..dc9b7c1a306 100644 --- a/docs/1.0.0/design/state_aware_scheduling/index.html +++ b/docs/1.0.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/1.0.0/developer_guide/build/index.html b/docs/1.0.0/developer_guide/build/index.html index 2479986a04d..d41efe2b5bf 100644 --- a/docs/1.0.0/developer_guide/build/index.html +++ b/docs/1.0.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/1.0.0/developer_guide/dependencies/index.html b/docs/1.0.0/developer_guide/dependencies/index.html index bee03a17ee7..96c7f495619 100644 --- a/docs/1.0.0/developer_guide/dependencies/index.html +++ b/docs/1.0.0/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/1.0.0/developer_guide/deployment/index.html b/docs/1.0.0/developer_guide/deployment/index.html index 431c3c6a49a..39c2c32f9cc 100644 --- a/docs/1.0.0/developer_guide/deployment/index.html +++ b/docs/1.0.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/1.0.0/developer_guide/env_setup/index.html b/docs/1.0.0/developer_guide/env_setup/index.html index dedba67e49a..20f74d3c8cb 100644 --- a/docs/1.0.0/developer_guide/env_setup/index.html +++ b/docs/1.0.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/1.0.0/developer_guide/openshift_development/index.html b/docs/1.0.0/developer_guide/openshift_development/index.html index 2233878e781..37faa977712 100644 --- a/docs/1.0.0/developer_guide/openshift_development/index.html +++ b/docs/1.0.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/1.0.0/get_started/core_features/index.html b/docs/1.0.0/get_started/core_features/index.html index 71b8e9a7ec3..fc6e203105e 100644 --- a/docs/1.0.0/get_started/core_features/index.html +++ b/docs/1.0.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/1.0.0/index.html b/docs/1.0.0/index.html index 1f94a32edbb..a77aa6ec567 100644 --- a/docs/1.0.0/index.html +++ b/docs/1.0.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/1.0.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/1.0.0/performance/evaluate_perf_function_with_kubemark/index.html index 40d2d9e8f6d..4ee3c19376f 100644 --- a/docs/1.0.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/1.0.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/1.0.0/performance/metrics/index.html b/docs/1.0.0/performance/metrics/index.html index 54eba1b0401..53422971e45 100644 --- a/docs/1.0.0/performance/metrics/index.html +++ b/docs/1.0.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/1.0.0/performance/performance_tutorial/index.html b/docs/1.0.0/performance/performance_tutorial/index.html index 7d591eac2f7..6aad4703f99 100644 --- a/docs/1.0.0/performance/performance_tutorial/index.html +++ b/docs/1.0.0/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/1.0.0/performance/profiling/index.html b/docs/1.0.0/performance/profiling/index.html index 30c2185e1b3..88521e85240 100644 --- a/docs/1.0.0/performance/profiling/index.html +++ b/docs/1.0.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/acls/index.html b/docs/1.0.0/user_guide/acls/index.html index f0534320026..f809559924f 100644 --- a/docs/1.0.0/user_guide/acls/index.html +++ b/docs/1.0.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/deployment_modes/index.html b/docs/1.0.0/user_guide/deployment_modes/index.html index 0a9ca61e69e..7af625d373b 100644 --- a/docs/1.0.0/user_guide/deployment_modes/index.html +++ b/docs/1.0.0/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/gang_scheduling/index.html b/docs/1.0.0/user_guide/gang_scheduling/index.html index 9071363ce5c..0438d411ff0 100644 --- a/docs/1.0.0/user_guide/gang_scheduling/index.html +++ b/docs/1.0.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/1.0.0/user_guide/labels_and_annotations_in_yunikorn/index.html index 7d1a370feb3..cc6206691ef 100644 --- a/docs/1.0.0/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/1.0.0/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/placement_rules/index.html b/docs/1.0.0/user_guide/placement_rules/index.html index 1a42148bacb..1c6708741e0 100644 --- a/docs/1.0.0/user_guide/placement_rules/index.html +++ b/docs/1.0.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/queue_config/index.html b/docs/1.0.0/user_guide/queue_config/index.html index be2d4b6d452..2cc06096169 100644 --- a/docs/1.0.0/user_guide/queue_config/index.html +++ b/docs/1.0.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/resource_quota_management/index.html b/docs/1.0.0/user_guide/resource_quota_management/index.html index c21de86aa33..92a42552e7b 100644 --- a/docs/1.0.0/user_guide/resource_quota_management/index.html +++ b/docs/1.0.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/sorting_policies/index.html b/docs/1.0.0/user_guide/sorting_policies/index.html index 9d8633c6d48..b9b770182cf 100644 --- a/docs/1.0.0/user_guide/sorting_policies/index.html +++ b/docs/1.0.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/trouble_shooting/index.html b/docs/1.0.0/user_guide/trouble_shooting/index.html index 877cd702403..e749fcc1052 100644 --- a/docs/1.0.0/user_guide/trouble_shooting/index.html +++ b/docs/1.0.0/user_guide/trouble_shooting/index.html @@ -4,7 +4,7 @@ Trouble Shooting | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/usergroup_resolution/index.html b/docs/1.0.0/user_guide/usergroup_resolution/index.html index 1e787ef89d9..24589447043 100644 --- a/docs/1.0.0/user_guide/usergroup_resolution/index.html +++ b/docs/1.0.0/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/workloads/run_flink/index.html b/docs/1.0.0/user_guide/workloads/run_flink/index.html index f3b58553338..61397b267df 100644 --- a/docs/1.0.0/user_guide/workloads/run_flink/index.html +++ b/docs/1.0.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/workloads/run_spark/index.html b/docs/1.0.0/user_guide/workloads/run_spark/index.html index 59053c025ac..72267e911c6 100644 --- a/docs/1.0.0/user_guide/workloads/run_spark/index.html +++ b/docs/1.0.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/1.0.0/user_guide/workloads/run_tf/index.html b/docs/1.0.0/user_guide/workloads/run_tf/index.html index 12ebcd072f9..37ed2e75638 100644 --- a/docs/1.0.0/user_guide/workloads/run_tf/index.html +++ b/docs/1.0.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/1.1.0/api/cluster/index.html b/docs/1.1.0/api/cluster/index.html index 8566090f323..963aa52a8b5 100644 --- a/docs/1.1.0/api/cluster/index.html +++ b/docs/1.1.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/1.1.0/api/scheduler/index.html b/docs/1.1.0/api/scheduler/index.html index ad8ab75bedb..e109af85ae5 100644 --- a/docs/1.1.0/api/scheduler/index.html +++ b/docs/1.1.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.1.0/api/system/index.html b/docs/1.1.0/api/system/index.html index 5a3bef245de..4bd66c94fdf 100644 --- a/docs/1.1.0/api/system/index.html +++ b/docs/1.1.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/1.1.0/design/architecture/index.html b/docs/1.1.0/design/architecture/index.html index a3428b7a5da..f49001e5fa4 100644 --- a/docs/1.1.0/design/architecture/index.html +++ b/docs/1.1.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/1.1.0/design/cache_removal/index.html b/docs/1.1.0/design/cache_removal/index.html index 3573151453c..60d43c8b54e 100644 --- a/docs/1.1.0/design/cache_removal/index.html +++ b/docs/1.1.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/1.1.0/design/cross_queue_preemption/index.html b/docs/1.1.0/design/cross_queue_preemption/index.html index a562e0e7c02..6da59dba725 100644 --- a/docs/1.1.0/design/cross_queue_preemption/index.html +++ b/docs/1.1.0/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/1.1.0/design/gang_scheduling/index.html b/docs/1.1.0/design/gang_scheduling/index.html index 2b607410542..4f9533083ff 100644 --- a/docs/1.1.0/design/gang_scheduling/index.html +++ b/docs/1.1.0/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/1.1.0/design/generic_resource/index.html b/docs/1.1.0/design/generic_resource/index.html index 6983518e0f1..5783711880b 100644 --- a/docs/1.1.0/design/generic_resource/index.html +++ b/docs/1.1.0/design/generic_resource/index.html @@ -4,7 +4,7 @@ Generic Resource Types in Namespace Quota | Apache YuniKorn - + diff --git a/docs/1.1.0/design/interface_message_simplification/index.html b/docs/1.1.0/design/interface_message_simplification/index.html index 9bf9c4112e2..a179d89bb9e 100644 --- a/docs/1.1.0/design/interface_message_simplification/index.html +++ b/docs/1.1.0/design/interface_message_simplification/index.html @@ -4,7 +4,7 @@ Simplifying Interface Messages | Apache YuniKorn - + diff --git a/docs/1.1.0/design/k8shim/index.html b/docs/1.1.0/design/k8shim/index.html index e39313c2c7a..41582c8a0c5 100644 --- a/docs/1.1.0/design/k8shim/index.html +++ b/docs/1.1.0/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/1.1.0/design/namespace_resource_quota/index.html b/docs/1.1.0/design/namespace_resource_quota/index.html index 59f7b0bdee7..3582b695a14 100644 --- a/docs/1.1.0/design/namespace_resource_quota/index.html +++ b/docs/1.1.0/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/1.1.0/design/pluggable_app_management/index.html b/docs/1.1.0/design/pluggable_app_management/index.html index d4e637b745b..50260a08c6d 100644 --- a/docs/1.1.0/design/pluggable_app_management/index.html +++ b/docs/1.1.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/1.1.0/design/predicates/index.html b/docs/1.1.0/design/predicates/index.html index f79946694e3..47f0a67d7ed 100644 --- a/docs/1.1.0/design/predicates/index.html +++ b/docs/1.1.0/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/1.1.0/design/resilience/index.html b/docs/1.1.0/design/resilience/index.html index 750235f2a8f..db2566b4d47 100644 --- a/docs/1.1.0/design/resilience/index.html +++ b/docs/1.1.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/1.1.0/design/scheduler_configuration/index.html b/docs/1.1.0/design/scheduler_configuration/index.html index f6619a9381b..bda5c95db02 100644 --- a/docs/1.1.0/design/scheduler_configuration/index.html +++ b/docs/1.1.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/1.1.0/design/scheduler_core_design/index.html b/docs/1.1.0/design/scheduler_core_design/index.html index 880c3d0db47..9c6e3b21563 100644 --- a/docs/1.1.0/design/scheduler_core_design/index.html +++ b/docs/1.1.0/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/1.1.0/design/scheduler_object_states/index.html b/docs/1.1.0/design/scheduler_object_states/index.html index 566479cc78e..9490a455e0a 100644 --- a/docs/1.1.0/design/scheduler_object_states/index.html +++ b/docs/1.1.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/1.1.0/design/scheduler_plugin/index.html b/docs/1.1.0/design/scheduler_plugin/index.html index 4410c7ebb0c..5014b0f0081 100644 --- a/docs/1.1.0/design/scheduler_plugin/index.html +++ b/docs/1.1.0/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/1.1.0/design/simple_preemptor/index.html b/docs/1.1.0/design/simple_preemptor/index.html index 72957320e07..9f9b19bdcf8 100644 --- a/docs/1.1.0/design/simple_preemptor/index.html +++ b/docs/1.1.0/design/simple_preemptor/index.html @@ -4,7 +4,7 @@ DaemonSet Scheduling using Simple Preemptor | Apache YuniKorn - + diff --git a/docs/1.1.0/design/state_aware_scheduling/index.html b/docs/1.1.0/design/state_aware_scheduling/index.html index 72b9c52a8a4..4caa3deecf7 100644 --- a/docs/1.1.0/design/state_aware_scheduling/index.html +++ b/docs/1.1.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/1.1.0/developer_guide/build/index.html b/docs/1.1.0/developer_guide/build/index.html index 85d5c51cc21..17c6d51ad9a 100644 --- a/docs/1.1.0/developer_guide/build/index.html +++ b/docs/1.1.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/1.1.0/developer_guide/dependencies/index.html b/docs/1.1.0/developer_guide/dependencies/index.html index 1a50db167b1..b5e728a5d30 100644 --- a/docs/1.1.0/developer_guide/dependencies/index.html +++ b/docs/1.1.0/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/1.1.0/developer_guide/deployment/index.html b/docs/1.1.0/developer_guide/deployment/index.html index 1e2d38f09cf..27bf719ad3c 100644 --- a/docs/1.1.0/developer_guide/deployment/index.html +++ b/docs/1.1.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/1.1.0/developer_guide/env_setup/index.html b/docs/1.1.0/developer_guide/env_setup/index.html index 6cc402da8f6..53958d8c254 100644 --- a/docs/1.1.0/developer_guide/env_setup/index.html +++ b/docs/1.1.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/1.1.0/developer_guide/openshift_development/index.html b/docs/1.1.0/developer_guide/openshift_development/index.html index 78c2d712961..359a809f7a2 100644 --- a/docs/1.1.0/developer_guide/openshift_development/index.html +++ b/docs/1.1.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/1.1.0/get_started/core_features/index.html b/docs/1.1.0/get_started/core_features/index.html index d559661ae42..00342e05320 100644 --- a/docs/1.1.0/get_started/core_features/index.html +++ b/docs/1.1.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/1.1.0/index.html b/docs/1.1.0/index.html index d42d57160fa..0778dfae117 100644 --- a/docs/1.1.0/index.html +++ b/docs/1.1.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/1.1.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/1.1.0/performance/evaluate_perf_function_with_kubemark/index.html index d3217dabab6..5bb5417fed9 100644 --- a/docs/1.1.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/1.1.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/1.1.0/performance/metrics/index.html b/docs/1.1.0/performance/metrics/index.html index c409a80f90c..440aa1d59eb 100644 --- a/docs/1.1.0/performance/metrics/index.html +++ b/docs/1.1.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/1.1.0/performance/performance_tutorial/index.html b/docs/1.1.0/performance/performance_tutorial/index.html index 17c303f7f1c..db97c403a6d 100644 --- a/docs/1.1.0/performance/performance_tutorial/index.html +++ b/docs/1.1.0/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/1.1.0/performance/profiling/index.html b/docs/1.1.0/performance/profiling/index.html index 73a9d53818a..ac66f2cd792 100644 --- a/docs/1.1.0/performance/profiling/index.html +++ b/docs/1.1.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/acls/index.html b/docs/1.1.0/user_guide/acls/index.html index 638feda216d..2c9022a24e4 100644 --- a/docs/1.1.0/user_guide/acls/index.html +++ b/docs/1.1.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/deployment_modes/index.html b/docs/1.1.0/user_guide/deployment_modes/index.html index f04b178de28..0df5e4909f1 100644 --- a/docs/1.1.0/user_guide/deployment_modes/index.html +++ b/docs/1.1.0/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/gang_scheduling/index.html b/docs/1.1.0/user_guide/gang_scheduling/index.html index 760c139818a..190ffdafc1f 100644 --- a/docs/1.1.0/user_guide/gang_scheduling/index.html +++ b/docs/1.1.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/1.1.0/user_guide/labels_and_annotations_in_yunikorn/index.html index 89de68a94f7..2c19f0418ea 100644 --- a/docs/1.1.0/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/1.1.0/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/placement_rules/index.html b/docs/1.1.0/user_guide/placement_rules/index.html index 5d9f50efe5d..85bf54244ab 100644 --- a/docs/1.1.0/user_guide/placement_rules/index.html +++ b/docs/1.1.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/queue_config/index.html b/docs/1.1.0/user_guide/queue_config/index.html index f3485a66838..09a4457c47e 100644 --- a/docs/1.1.0/user_guide/queue_config/index.html +++ b/docs/1.1.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/resource_quota_management/index.html b/docs/1.1.0/user_guide/resource_quota_management/index.html index 9b81b056f44..05fe0eea33b 100644 --- a/docs/1.1.0/user_guide/resource_quota_management/index.html +++ b/docs/1.1.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/sorting_policies/index.html b/docs/1.1.0/user_guide/sorting_policies/index.html index 05b07069118..86706230e87 100644 --- a/docs/1.1.0/user_guide/sorting_policies/index.html +++ b/docs/1.1.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/trouble_shooting/index.html b/docs/1.1.0/user_guide/trouble_shooting/index.html index ce9330b7883..5d074340a1a 100644 --- a/docs/1.1.0/user_guide/trouble_shooting/index.html +++ b/docs/1.1.0/user_guide/trouble_shooting/index.html @@ -4,7 +4,7 @@ Trouble Shooting | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/usergroup_resolution/index.html b/docs/1.1.0/user_guide/usergroup_resolution/index.html index 0280b44a730..066090db8b5 100644 --- a/docs/1.1.0/user_guide/usergroup_resolution/index.html +++ b/docs/1.1.0/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/workloads/run_flink/index.html b/docs/1.1.0/user_guide/workloads/run_flink/index.html index 2add8b4ce2f..0d082bcb1b2 100644 --- a/docs/1.1.0/user_guide/workloads/run_flink/index.html +++ b/docs/1.1.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/workloads/run_spark/index.html b/docs/1.1.0/user_guide/workloads/run_spark/index.html index a67ff40157f..55638f8c356 100644 --- a/docs/1.1.0/user_guide/workloads/run_spark/index.html +++ b/docs/1.1.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/workloads/run_tf/index.html b/docs/1.1.0/user_guide/workloads/run_tf/index.html index 0b8a694406e..c166884bc5d 100644 --- a/docs/1.1.0/user_guide/workloads/run_tf/index.html +++ b/docs/1.1.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/1.1.0/user_guide/workloads/workload_overview/index.html b/docs/1.1.0/user_guide/workloads/workload_overview/index.html index dd0f073de83..5b4d31aab70 100644 --- a/docs/1.1.0/user_guide/workloads/workload_overview/index.html +++ b/docs/1.1.0/user_guide/workloads/workload_overview/index.html @@ -4,7 +4,7 @@ Overview | Apache YuniKorn - + diff --git a/docs/1.2.0/api/cluster/index.html b/docs/1.2.0/api/cluster/index.html index 4852a0e8491..d12d33135d2 100644 --- a/docs/1.2.0/api/cluster/index.html +++ b/docs/1.2.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/1.2.0/api/scheduler/index.html b/docs/1.2.0/api/scheduler/index.html index 27a1993bce6..c6c3cbf7ce4 100644 --- a/docs/1.2.0/api/scheduler/index.html +++ b/docs/1.2.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.2.0/api/system/index.html b/docs/1.2.0/api/system/index.html index 41a86cba3e1..104b260dbcc 100644 --- a/docs/1.2.0/api/system/index.html +++ b/docs/1.2.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/1.2.0/archived_design/cross_queue_preemption/index.html b/docs/1.2.0/archived_design/cross_queue_preemption/index.html index e14edbaa2db..4be06d6d860 100644 --- a/docs/1.2.0/archived_design/cross_queue_preemption/index.html +++ b/docs/1.2.0/archived_design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/1.2.0/archived_design/k8shim/index.html b/docs/1.2.0/archived_design/k8shim/index.html index 38a3212e3f9..ece60817fe7 100644 --- a/docs/1.2.0/archived_design/k8shim/index.html +++ b/docs/1.2.0/archived_design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/1.2.0/archived_design/namespace_resource_quota/index.html b/docs/1.2.0/archived_design/namespace_resource_quota/index.html index bd8b7ef44a5..475d4944e5d 100644 --- a/docs/1.2.0/archived_design/namespace_resource_quota/index.html +++ b/docs/1.2.0/archived_design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/1.2.0/archived_design/predicates/index.html b/docs/1.2.0/archived_design/predicates/index.html index 1595e315e10..17259cc9108 100644 --- a/docs/1.2.0/archived_design/predicates/index.html +++ b/docs/1.2.0/archived_design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/1.2.0/archived_design/scheduler_core_design/index.html b/docs/1.2.0/archived_design/scheduler_core_design/index.html index fb389a83fd7..b1d413eb066 100644 --- a/docs/1.2.0/archived_design/scheduler_core_design/index.html +++ b/docs/1.2.0/archived_design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/1.2.0/design/architecture/index.html b/docs/1.2.0/design/architecture/index.html index 604576651ba..6c7a7ee84df 100644 --- a/docs/1.2.0/design/architecture/index.html +++ b/docs/1.2.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/1.2.0/design/cache_removal/index.html b/docs/1.2.0/design/cache_removal/index.html index c6360498ec8..ba438744621 100644 --- a/docs/1.2.0/design/cache_removal/index.html +++ b/docs/1.2.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/1.2.0/design/config_v2/index.html b/docs/1.2.0/design/config_v2/index.html index 5b4b1e216b9..df10b8f1811 100644 --- a/docs/1.2.0/design/config_v2/index.html +++ b/docs/1.2.0/design/config_v2/index.html @@ -4,7 +4,7 @@ Configuration V2 | Apache YuniKorn - + diff --git a/docs/1.2.0/design/cross_queue_preemption/index.html b/docs/1.2.0/design/cross_queue_preemption/index.html index 3817cd98189..be6af0ea95d 100644 --- a/docs/1.2.0/design/cross_queue_preemption/index.html +++ b/docs/1.2.0/design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/1.2.0/design/gang_scheduling/index.html b/docs/1.2.0/design/gang_scheduling/index.html index 1d0313dd947..a32c5961a2d 100644 --- a/docs/1.2.0/design/gang_scheduling/index.html +++ b/docs/1.2.0/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/1.2.0/design/generic_resource/index.html b/docs/1.2.0/design/generic_resource/index.html index 5b52849c6f7..41397b4385a 100644 --- a/docs/1.2.0/design/generic_resource/index.html +++ b/docs/1.2.0/design/generic_resource/index.html @@ -4,7 +4,7 @@ Generic Resource Types in Namespace Quota | Apache YuniKorn - + diff --git a/docs/1.2.0/design/interface_message_simplification/index.html b/docs/1.2.0/design/interface_message_simplification/index.html index b059edcb551..88d9b6a6433 100644 --- a/docs/1.2.0/design/interface_message_simplification/index.html +++ b/docs/1.2.0/design/interface_message_simplification/index.html @@ -4,7 +4,7 @@ Simplifying Interface Messages | Apache YuniKorn - + diff --git a/docs/1.2.0/design/k8shim/index.html b/docs/1.2.0/design/k8shim/index.html index 45592a30521..6e41e8c278b 100644 --- a/docs/1.2.0/design/k8shim/index.html +++ b/docs/1.2.0/design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/1.2.0/design/namespace_resource_quota/index.html b/docs/1.2.0/design/namespace_resource_quota/index.html index 08c161008d1..7aa9ffc6802 100644 --- a/docs/1.2.0/design/namespace_resource_quota/index.html +++ b/docs/1.2.0/design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/1.2.0/design/pluggable_app_management/index.html b/docs/1.2.0/design/pluggable_app_management/index.html index fc33e2b7e18..d88d2ffee8e 100644 --- a/docs/1.2.0/design/pluggable_app_management/index.html +++ b/docs/1.2.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/1.2.0/design/predicates/index.html b/docs/1.2.0/design/predicates/index.html index 681268f11ff..f081252e12a 100644 --- a/docs/1.2.0/design/predicates/index.html +++ b/docs/1.2.0/design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/1.2.0/design/priority_scheduling/index.html b/docs/1.2.0/design/priority_scheduling/index.html index 48918f203cc..389958c61af 100644 --- a/docs/1.2.0/design/priority_scheduling/index.html +++ b/docs/1.2.0/design/priority_scheduling/index.html @@ -4,7 +4,7 @@ Priority Scheduling | Apache YuniKorn - + diff --git a/docs/1.2.0/design/resilience/index.html b/docs/1.2.0/design/resilience/index.html index d1574cdacc3..e4928b356c1 100644 --- a/docs/1.2.0/design/resilience/index.html +++ b/docs/1.2.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/1.2.0/design/scheduler_configuration/index.html b/docs/1.2.0/design/scheduler_configuration/index.html index bd6c543e529..dbe74c7aa20 100644 --- a/docs/1.2.0/design/scheduler_configuration/index.html +++ b/docs/1.2.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/1.2.0/design/scheduler_core_design/index.html b/docs/1.2.0/design/scheduler_core_design/index.html index 23aabcf0c8c..d7a7d751104 100644 --- a/docs/1.2.0/design/scheduler_core_design/index.html +++ b/docs/1.2.0/design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/1.2.0/design/scheduler_object_states/index.html b/docs/1.2.0/design/scheduler_object_states/index.html index 22886683e64..ba6b77794c2 100644 --- a/docs/1.2.0/design/scheduler_object_states/index.html +++ b/docs/1.2.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/1.2.0/design/scheduler_plugin/index.html b/docs/1.2.0/design/scheduler_plugin/index.html index 9588cd4d6c3..5aca62b164e 100644 --- a/docs/1.2.0/design/scheduler_plugin/index.html +++ b/docs/1.2.0/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/1.2.0/design/simple_preemptor/index.html b/docs/1.2.0/design/simple_preemptor/index.html index 8b5c8659a61..f5034d874f6 100644 --- a/docs/1.2.0/design/simple_preemptor/index.html +++ b/docs/1.2.0/design/simple_preemptor/index.html @@ -4,7 +4,7 @@ DaemonSet Scheduling using Simple Preemptor | Apache YuniKorn - + diff --git a/docs/1.2.0/design/state_aware_scheduling/index.html b/docs/1.2.0/design/state_aware_scheduling/index.html index 7f78aef8636..d6fc1c2a2d9 100644 --- a/docs/1.2.0/design/state_aware_scheduling/index.html +++ b/docs/1.2.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/1.2.0/design/user_based_resource_usage_tracking/index.html b/docs/1.2.0/design/user_based_resource_usage_tracking/index.html index 73a1eede813..91e06f78c04 100644 --- a/docs/1.2.0/design/user_based_resource_usage_tracking/index.html +++ b/docs/1.2.0/design/user_based_resource_usage_tracking/index.html @@ -4,7 +4,7 @@ User Based Resource Usage Tracking | Apache YuniKorn - + diff --git a/docs/1.2.0/design/user_group/index.html b/docs/1.2.0/design/user_group/index.html index a6cb243ec32..c0a983cb408 100644 --- a/docs/1.2.0/design/user_group/index.html +++ b/docs/1.2.0/design/user_group/index.html @@ -4,7 +4,7 @@ User/Group handling and lookup design | Apache YuniKorn - + diff --git a/docs/1.2.0/developer_guide/build/index.html b/docs/1.2.0/developer_guide/build/index.html index 03e500b339d..5677a993653 100644 --- a/docs/1.2.0/developer_guide/build/index.html +++ b/docs/1.2.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/1.2.0/developer_guide/dependencies/index.html b/docs/1.2.0/developer_guide/dependencies/index.html index 3d42d8fa859..4fdd31c96c6 100644 --- a/docs/1.2.0/developer_guide/dependencies/index.html +++ b/docs/1.2.0/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/1.2.0/developer_guide/deployment/index.html b/docs/1.2.0/developer_guide/deployment/index.html index 1a8862da082..4b38aa87656 100644 --- a/docs/1.2.0/developer_guide/deployment/index.html +++ b/docs/1.2.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/1.2.0/developer_guide/env_setup/index.html b/docs/1.2.0/developer_guide/env_setup/index.html index e498df69159..0bf5cc8b59f 100644 --- a/docs/1.2.0/developer_guide/env_setup/index.html +++ b/docs/1.2.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/1.2.0/developer_guide/openshift_development/index.html b/docs/1.2.0/developer_guide/openshift_development/index.html index 2a1cbf56d73..ad30abf4251 100644 --- a/docs/1.2.0/developer_guide/openshift_development/index.html +++ b/docs/1.2.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/1.2.0/get_started/core_features/index.html b/docs/1.2.0/get_started/core_features/index.html index 5c2075209f3..30c90cd9dfa 100644 --- a/docs/1.2.0/get_started/core_features/index.html +++ b/docs/1.2.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/1.2.0/index.html b/docs/1.2.0/index.html index ee410a927b3..2f26aabe0fc 100644 --- a/docs/1.2.0/index.html +++ b/docs/1.2.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/1.2.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/1.2.0/performance/evaluate_perf_function_with_kubemark/index.html index 5acb8c27e4b..5047edb6ba5 100644 --- a/docs/1.2.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/1.2.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/1.2.0/performance/metrics/index.html b/docs/1.2.0/performance/metrics/index.html index 5dac458b8b0..d688cc602fb 100644 --- a/docs/1.2.0/performance/metrics/index.html +++ b/docs/1.2.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/1.2.0/performance/performance_tutorial/index.html b/docs/1.2.0/performance/performance_tutorial/index.html index eccf38a07ec..318e81eeacc 100644 --- a/docs/1.2.0/performance/performance_tutorial/index.html +++ b/docs/1.2.0/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/1.2.0/performance/profiling/index.html b/docs/1.2.0/performance/profiling/index.html index a4cd3e79c0f..6b4df9aad8e 100644 --- a/docs/1.2.0/performance/profiling/index.html +++ b/docs/1.2.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/acls/index.html b/docs/1.2.0/user_guide/acls/index.html index c6324f5d611..eb323bf68f1 100644 --- a/docs/1.2.0/user_guide/acls/index.html +++ b/docs/1.2.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/deployment_modes/index.html b/docs/1.2.0/user_guide/deployment_modes/index.html index 1a08812923a..3c64656cd6e 100644 --- a/docs/1.2.0/user_guide/deployment_modes/index.html +++ b/docs/1.2.0/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/gang_scheduling/index.html b/docs/1.2.0/user_guide/gang_scheduling/index.html index 62752280423..4b4bacacbb6 100644 --- a/docs/1.2.0/user_guide/gang_scheduling/index.html +++ b/docs/1.2.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/1.2.0/user_guide/labels_and_annotations_in_yunikorn/index.html index 72b87117e28..6bfe8a48495 100644 --- a/docs/1.2.0/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/1.2.0/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/placement_rules/index.html b/docs/1.2.0/user_guide/placement_rules/index.html index dd42748d703..effa5a7465f 100644 --- a/docs/1.2.0/user_guide/placement_rules/index.html +++ b/docs/1.2.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/priorities/index.html b/docs/1.2.0/user_guide/priorities/index.html index 7c1553b6296..e2c501b8e91 100644 --- a/docs/1.2.0/user_guide/priorities/index.html +++ b/docs/1.2.0/user_guide/priorities/index.html @@ -4,7 +4,7 @@ App & Queue Priorities | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/queue_config/index.html b/docs/1.2.0/user_guide/queue_config/index.html index 57110929dae..a28673de234 100644 --- a/docs/1.2.0/user_guide/queue_config/index.html +++ b/docs/1.2.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/resource_quota_management/index.html b/docs/1.2.0/user_guide/resource_quota_management/index.html index ac8b06eb266..e941bf3d1cd 100644 --- a/docs/1.2.0/user_guide/resource_quota_management/index.html +++ b/docs/1.2.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/service_config/index.html b/docs/1.2.0/user_guide/service_config/index.html index 46e45888769..d694f6b9dc4 100644 --- a/docs/1.2.0/user_guide/service_config/index.html +++ b/docs/1.2.0/user_guide/service_config/index.html @@ -4,7 +4,7 @@ Service Configuration | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/sorting_policies/index.html b/docs/1.2.0/user_guide/sorting_policies/index.html index 044885bbe76..14d27b3f81a 100644 --- a/docs/1.2.0/user_guide/sorting_policies/index.html +++ b/docs/1.2.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/troubleshooting/index.html b/docs/1.2.0/user_guide/troubleshooting/index.html index 718a8feffa6..3179388d6ac 100644 --- a/docs/1.2.0/user_guide/troubleshooting/index.html +++ b/docs/1.2.0/user_guide/troubleshooting/index.html @@ -4,7 +4,7 @@ Troubleshooting | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/usergroup_resolution/index.html b/docs/1.2.0/user_guide/usergroup_resolution/index.html index cc0aaa93278..6f4710b1ffd 100644 --- a/docs/1.2.0/user_guide/usergroup_resolution/index.html +++ b/docs/1.2.0/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/workloads/run_flink/index.html b/docs/1.2.0/user_guide/workloads/run_flink/index.html index 68841977339..19bd323856c 100644 --- a/docs/1.2.0/user_guide/workloads/run_flink/index.html +++ b/docs/1.2.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/workloads/run_mpi/index.html b/docs/1.2.0/user_guide/workloads/run_mpi/index.html index 832e18a40b3..40f9cd44040 100644 --- a/docs/1.2.0/user_guide/workloads/run_mpi/index.html +++ b/docs/1.2.0/user_guide/workloads/run_mpi/index.html @@ -4,7 +4,7 @@ Run MPI Jobs | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/workloads/run_nvidia/index.html b/docs/1.2.0/user_guide/workloads/run_nvidia/index.html index 7b7b8e1cd0a..139238cfda2 100644 --- a/docs/1.2.0/user_guide/workloads/run_nvidia/index.html +++ b/docs/1.2.0/user_guide/workloads/run_nvidia/index.html @@ -4,7 +4,7 @@ Run NVIDIA GPU Jobs | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/workloads/run_spark/index.html b/docs/1.2.0/user_guide/workloads/run_spark/index.html index c1bf2bcb27b..5a37acdbbf4 100644 --- a/docs/1.2.0/user_guide/workloads/run_spark/index.html +++ b/docs/1.2.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/workloads/run_tf/index.html b/docs/1.2.0/user_guide/workloads/run_tf/index.html index b4f4e8a44fb..0223ed0e8be 100644 --- a/docs/1.2.0/user_guide/workloads/run_tf/index.html +++ b/docs/1.2.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/1.2.0/user_guide/workloads/workload_overview/index.html b/docs/1.2.0/user_guide/workloads/workload_overview/index.html index 9e332e55e51..07fa61867be 100644 --- a/docs/1.2.0/user_guide/workloads/workload_overview/index.html +++ b/docs/1.2.0/user_guide/workloads/workload_overview/index.html @@ -4,7 +4,7 @@ Overview | Apache YuniKorn - + diff --git a/docs/1.3.0/api/cluster/index.html b/docs/1.3.0/api/cluster/index.html index 00a3c85d7fa..20e7ab49e44 100644 --- a/docs/1.3.0/api/cluster/index.html +++ b/docs/1.3.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/1.3.0/api/scheduler/index.html b/docs/1.3.0/api/scheduler/index.html index 0ae0dab9b02..7c630e5c370 100644 --- a/docs/1.3.0/api/scheduler/index.html +++ b/docs/1.3.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.3.0/api/system/index.html b/docs/1.3.0/api/system/index.html index 268bddd66d5..c4f9924290c 100644 --- a/docs/1.3.0/api/system/index.html +++ b/docs/1.3.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/1.3.0/archived_design/cross_queue_preemption/index.html b/docs/1.3.0/archived_design/cross_queue_preemption/index.html index 9384091c80f..096f0977ddb 100644 --- a/docs/1.3.0/archived_design/cross_queue_preemption/index.html +++ b/docs/1.3.0/archived_design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/1.3.0/archived_design/k8shim/index.html b/docs/1.3.0/archived_design/k8shim/index.html index 1fcc356b9c0..f59d3ba774a 100644 --- a/docs/1.3.0/archived_design/k8shim/index.html +++ b/docs/1.3.0/archived_design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/1.3.0/archived_design/namespace_resource_quota/index.html b/docs/1.3.0/archived_design/namespace_resource_quota/index.html index f94f0d95654..83ebc36aeab 100644 --- a/docs/1.3.0/archived_design/namespace_resource_quota/index.html +++ b/docs/1.3.0/archived_design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/1.3.0/archived_design/predicates/index.html b/docs/1.3.0/archived_design/predicates/index.html index b6e1ba579fe..82467648875 100644 --- a/docs/1.3.0/archived_design/predicates/index.html +++ b/docs/1.3.0/archived_design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/1.3.0/archived_design/scheduler_core_design/index.html b/docs/1.3.0/archived_design/scheduler_core_design/index.html index 051d6eab091..1aac25ea78f 100644 --- a/docs/1.3.0/archived_design/scheduler_core_design/index.html +++ b/docs/1.3.0/archived_design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/1.3.0/design/architecture/index.html b/docs/1.3.0/design/architecture/index.html index 6a1a6a4a4d4..076f1c150a7 100644 --- a/docs/1.3.0/design/architecture/index.html +++ b/docs/1.3.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/1.3.0/design/cache_removal/index.html b/docs/1.3.0/design/cache_removal/index.html index a635bc55b51..813180e27ad 100644 --- a/docs/1.3.0/design/cache_removal/index.html +++ b/docs/1.3.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/1.3.0/design/config_v2/index.html b/docs/1.3.0/design/config_v2/index.html index 24bde113e49..ed7ea8bff39 100644 --- a/docs/1.3.0/design/config_v2/index.html +++ b/docs/1.3.0/design/config_v2/index.html @@ -4,7 +4,7 @@ Configuration V2 | Apache YuniKorn - + diff --git a/docs/1.3.0/design/gang_scheduling/index.html b/docs/1.3.0/design/gang_scheduling/index.html index d53bca7a784..d565362c288 100644 --- a/docs/1.3.0/design/gang_scheduling/index.html +++ b/docs/1.3.0/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/1.3.0/design/generic_resource/index.html b/docs/1.3.0/design/generic_resource/index.html index a281198570d..22cf4384cee 100644 --- a/docs/1.3.0/design/generic_resource/index.html +++ b/docs/1.3.0/design/generic_resource/index.html @@ -4,7 +4,7 @@ Generic Resource Types in Namespace Quota | Apache YuniKorn - + diff --git a/docs/1.3.0/design/interface_message_simplification/index.html b/docs/1.3.0/design/interface_message_simplification/index.html index 67a738187b8..37ab406ed6b 100644 --- a/docs/1.3.0/design/interface_message_simplification/index.html +++ b/docs/1.3.0/design/interface_message_simplification/index.html @@ -4,7 +4,7 @@ Simplifying Interface Messages | Apache YuniKorn - + diff --git a/docs/1.3.0/design/pluggable_app_management/index.html b/docs/1.3.0/design/pluggable_app_management/index.html index 34577c450b8..388a01738da 100644 --- a/docs/1.3.0/design/pluggable_app_management/index.html +++ b/docs/1.3.0/design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/1.3.0/design/preemption/index.html b/docs/1.3.0/design/preemption/index.html index c095b2acd39..2ac3c49357d 100644 --- a/docs/1.3.0/design/preemption/index.html +++ b/docs/1.3.0/design/preemption/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/1.3.0/design/priority_scheduling/index.html b/docs/1.3.0/design/priority_scheduling/index.html index 89b5b514cda..49216679a09 100644 --- a/docs/1.3.0/design/priority_scheduling/index.html +++ b/docs/1.3.0/design/priority_scheduling/index.html @@ -4,7 +4,7 @@ Priority Scheduling | Apache YuniKorn - + diff --git a/docs/1.3.0/design/resilience/index.html b/docs/1.3.0/design/resilience/index.html index 3f540441916..c804cac0f17 100644 --- a/docs/1.3.0/design/resilience/index.html +++ b/docs/1.3.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/1.3.0/design/scheduler_configuration/index.html b/docs/1.3.0/design/scheduler_configuration/index.html index ec45adca8b9..398d4f50e67 100644 --- a/docs/1.3.0/design/scheduler_configuration/index.html +++ b/docs/1.3.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/1.3.0/design/scheduler_object_states/index.html b/docs/1.3.0/design/scheduler_object_states/index.html index 404ec481627..94c02e685b0 100644 --- a/docs/1.3.0/design/scheduler_object_states/index.html +++ b/docs/1.3.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/1.3.0/design/scheduler_plugin/index.html b/docs/1.3.0/design/scheduler_plugin/index.html index 6965d91d819..470ec7e70bb 100644 --- a/docs/1.3.0/design/scheduler_plugin/index.html +++ b/docs/1.3.0/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/1.3.0/design/simple_preemptor/index.html b/docs/1.3.0/design/simple_preemptor/index.html index 9b324af0739..468f179a335 100644 --- a/docs/1.3.0/design/simple_preemptor/index.html +++ b/docs/1.3.0/design/simple_preemptor/index.html @@ -4,7 +4,7 @@ DaemonSet Scheduling using Simple Preemptor | Apache YuniKorn - + diff --git a/docs/1.3.0/design/state_aware_scheduling/index.html b/docs/1.3.0/design/state_aware_scheduling/index.html index 21039dd3f02..fcc76854f67 100644 --- a/docs/1.3.0/design/state_aware_scheduling/index.html +++ b/docs/1.3.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/1.3.0/design/user_based_resource_usage_tracking/index.html b/docs/1.3.0/design/user_based_resource_usage_tracking/index.html index d004f535525..f3c2322928d 100644 --- a/docs/1.3.0/design/user_based_resource_usage_tracking/index.html +++ b/docs/1.3.0/design/user_based_resource_usage_tracking/index.html @@ -4,7 +4,7 @@ User Based Resource Usage Tracking | Apache YuniKorn - + diff --git a/docs/1.3.0/design/user_group/index.html b/docs/1.3.0/design/user_group/index.html index f78e6356999..c84860f4c87 100644 --- a/docs/1.3.0/design/user_group/index.html +++ b/docs/1.3.0/design/user_group/index.html @@ -4,7 +4,7 @@ User/Group handling and lookup design | Apache YuniKorn - + diff --git a/docs/1.3.0/design/user_group_resource_usage_enforcement/index.html b/docs/1.3.0/design/user_group_resource_usage_enforcement/index.html index e1abba2a66a..9ff806276e5 100644 --- a/docs/1.3.0/design/user_group_resource_usage_enforcement/index.html +++ b/docs/1.3.0/design/user_group_resource_usage_enforcement/index.html @@ -4,7 +4,7 @@ User Based Quota Enforcement | Apache YuniKorn - + diff --git a/docs/1.3.0/developer_guide/build/index.html b/docs/1.3.0/developer_guide/build/index.html index cc2f11e2f34..f2127923ac6 100644 --- a/docs/1.3.0/developer_guide/build/index.html +++ b/docs/1.3.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/1.3.0/developer_guide/dependencies/index.html b/docs/1.3.0/developer_guide/dependencies/index.html index 6f92746432a..1de2dd64995 100644 --- a/docs/1.3.0/developer_guide/dependencies/index.html +++ b/docs/1.3.0/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/1.3.0/developer_guide/deployment/index.html b/docs/1.3.0/developer_guide/deployment/index.html index 3efa86b8d43..825e0ba0670 100644 --- a/docs/1.3.0/developer_guide/deployment/index.html +++ b/docs/1.3.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/1.3.0/developer_guide/env_setup/index.html b/docs/1.3.0/developer_guide/env_setup/index.html index f199276e6a3..c7bd8e3dbff 100644 --- a/docs/1.3.0/developer_guide/env_setup/index.html +++ b/docs/1.3.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/1.3.0/developer_guide/openshift_development/index.html b/docs/1.3.0/developer_guide/openshift_development/index.html index 33ca6de8c6a..8e52d735ba7 100644 --- a/docs/1.3.0/developer_guide/openshift_development/index.html +++ b/docs/1.3.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/1.3.0/get_started/core_features/index.html b/docs/1.3.0/get_started/core_features/index.html index 912cfc0345d..7b7d2cdec55 100644 --- a/docs/1.3.0/get_started/core_features/index.html +++ b/docs/1.3.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/1.3.0/index.html b/docs/1.3.0/index.html index fa2d302accf..fd48fcf9c27 100644 --- a/docs/1.3.0/index.html +++ b/docs/1.3.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/1.3.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/1.3.0/performance/evaluate_perf_function_with_kubemark/index.html index 8dee1f89a26..b94a93c0483 100644 --- a/docs/1.3.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/1.3.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/1.3.0/performance/metrics/index.html b/docs/1.3.0/performance/metrics/index.html index 64178aa3a76..61423ec5455 100644 --- a/docs/1.3.0/performance/metrics/index.html +++ b/docs/1.3.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/1.3.0/performance/performance_tutorial/index.html b/docs/1.3.0/performance/performance_tutorial/index.html index fce4eae0646..6c902ef9dc5 100644 --- a/docs/1.3.0/performance/performance_tutorial/index.html +++ b/docs/1.3.0/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/1.3.0/performance/profiling/index.html b/docs/1.3.0/performance/profiling/index.html index aab7af3ddd2..495cdd7e298 100644 --- a/docs/1.3.0/performance/profiling/index.html +++ b/docs/1.3.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/acls/index.html b/docs/1.3.0/user_guide/acls/index.html index f95d4ba76f1..861bb563073 100644 --- a/docs/1.3.0/user_guide/acls/index.html +++ b/docs/1.3.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/deployment_modes/index.html b/docs/1.3.0/user_guide/deployment_modes/index.html index 4ed4d95a750..53402c09616 100644 --- a/docs/1.3.0/user_guide/deployment_modes/index.html +++ b/docs/1.3.0/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/gang_scheduling/index.html b/docs/1.3.0/user_guide/gang_scheduling/index.html index 893ebb2afbe..041765dd82f 100644 --- a/docs/1.3.0/user_guide/gang_scheduling/index.html +++ b/docs/1.3.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/1.3.0/user_guide/labels_and_annotations_in_yunikorn/index.html index 88e34d12633..9552f6db586 100644 --- a/docs/1.3.0/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/1.3.0/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/placement_rules/index.html b/docs/1.3.0/user_guide/placement_rules/index.html index 3c8ac7e4f3c..f1b49ef7776 100644 --- a/docs/1.3.0/user_guide/placement_rules/index.html +++ b/docs/1.3.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/priorities/index.html b/docs/1.3.0/user_guide/priorities/index.html index 82542cfb93d..750b07e0799 100644 --- a/docs/1.3.0/user_guide/priorities/index.html +++ b/docs/1.3.0/user_guide/priorities/index.html @@ -4,7 +4,7 @@ App & Queue Priorities | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/prometheus/index.html b/docs/1.3.0/user_guide/prometheus/index.html index 92f7fd17061..c720fdc50b0 100644 --- a/docs/1.3.0/user_guide/prometheus/index.html +++ b/docs/1.3.0/user_guide/prometheus/index.html @@ -4,7 +4,7 @@ Prometheus and Grafana | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/queue_config/index.html b/docs/1.3.0/user_guide/queue_config/index.html index 9e24182f817..c7d16970bb2 100644 --- a/docs/1.3.0/user_guide/queue_config/index.html +++ b/docs/1.3.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/resource_quota_management/index.html b/docs/1.3.0/user_guide/resource_quota_management/index.html index 9d06f1aa56e..9362ba6683c 100644 --- a/docs/1.3.0/user_guide/resource_quota_management/index.html +++ b/docs/1.3.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/service_config/index.html b/docs/1.3.0/user_guide/service_config/index.html index f8b6130793e..5b6766f2246 100644 --- a/docs/1.3.0/user_guide/service_config/index.html +++ b/docs/1.3.0/user_guide/service_config/index.html @@ -4,7 +4,7 @@ Service Configuration | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/sorting_policies/index.html b/docs/1.3.0/user_guide/sorting_policies/index.html index f7c5dfacb78..b4ce369031a 100644 --- a/docs/1.3.0/user_guide/sorting_policies/index.html +++ b/docs/1.3.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/troubleshooting/index.html b/docs/1.3.0/user_guide/troubleshooting/index.html index 9d5520b30f4..2f81d70e070 100644 --- a/docs/1.3.0/user_guide/troubleshooting/index.html +++ b/docs/1.3.0/user_guide/troubleshooting/index.html @@ -4,7 +4,7 @@ Troubleshooting | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/use_cases/index.html b/docs/1.3.0/user_guide/use_cases/index.html index fddbee62a42..e86300cbdf1 100644 --- a/docs/1.3.0/user_guide/use_cases/index.html +++ b/docs/1.3.0/user_guide/use_cases/index.html @@ -4,7 +4,7 @@ Use Cases | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/usergroup_resolution/index.html b/docs/1.3.0/user_guide/usergroup_resolution/index.html index b7f9d6fc5b2..1b254b4be49 100644 --- a/docs/1.3.0/user_guide/usergroup_resolution/index.html +++ b/docs/1.3.0/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/workloads/run_flink/index.html b/docs/1.3.0/user_guide/workloads/run_flink/index.html index aaf2df67386..b1eb067a69d 100644 --- a/docs/1.3.0/user_guide/workloads/run_flink/index.html +++ b/docs/1.3.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/workloads/run_mpi/index.html b/docs/1.3.0/user_guide/workloads/run_mpi/index.html index 1f0897a8a70..7afd0fe8fe6 100644 --- a/docs/1.3.0/user_guide/workloads/run_mpi/index.html +++ b/docs/1.3.0/user_guide/workloads/run_mpi/index.html @@ -4,7 +4,7 @@ Run MPI Jobs | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/workloads/run_nvidia/index.html b/docs/1.3.0/user_guide/workloads/run_nvidia/index.html index 191ff9d76b6..d264ccc59cb 100644 --- a/docs/1.3.0/user_guide/workloads/run_nvidia/index.html +++ b/docs/1.3.0/user_guide/workloads/run_nvidia/index.html @@ -4,7 +4,7 @@ Run NVIDIA GPU Jobs | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/workloads/run_spark/index.html b/docs/1.3.0/user_guide/workloads/run_spark/index.html index e10c929b680..42356afc05f 100644 --- a/docs/1.3.0/user_guide/workloads/run_spark/index.html +++ b/docs/1.3.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/workloads/run_tf/index.html b/docs/1.3.0/user_guide/workloads/run_tf/index.html index dbc7a74cd78..6b0cdc3a319 100644 --- a/docs/1.3.0/user_guide/workloads/run_tf/index.html +++ b/docs/1.3.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/1.3.0/user_guide/workloads/workload_overview/index.html b/docs/1.3.0/user_guide/workloads/workload_overview/index.html index cf8598b18ca..5f7e4689e3a 100644 --- a/docs/1.3.0/user_guide/workloads/workload_overview/index.html +++ b/docs/1.3.0/user_guide/workloads/workload_overview/index.html @@ -4,7 +4,7 @@ Overview | Apache YuniKorn - + diff --git a/docs/1.4.0/api/cluster/index.html b/docs/1.4.0/api/cluster/index.html index 46f29f35ec7..6a72b94428e 100644 --- a/docs/1.4.0/api/cluster/index.html +++ b/docs/1.4.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/1.4.0/api/scheduler/index.html b/docs/1.4.0/api/scheduler/index.html index fbe82023e23..edfb5899de3 100644 --- a/docs/1.4.0/api/scheduler/index.html +++ b/docs/1.4.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.4.0/api/system/index.html b/docs/1.4.0/api/system/index.html index 86fc8be04e7..d72bdad5fc0 100644 --- a/docs/1.4.0/api/system/index.html +++ b/docs/1.4.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/1.4.0/archived_design/cross_queue_preemption/index.html b/docs/1.4.0/archived_design/cross_queue_preemption/index.html index 985c8b7ad51..a43eaeed4e1 100644 --- a/docs/1.4.0/archived_design/cross_queue_preemption/index.html +++ b/docs/1.4.0/archived_design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/1.4.0/archived_design/k8shim/index.html b/docs/1.4.0/archived_design/k8shim/index.html index 1612c2a5004..3164e5ad9a8 100644 --- a/docs/1.4.0/archived_design/k8shim/index.html +++ b/docs/1.4.0/archived_design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/1.4.0/archived_design/namespace_resource_quota/index.html b/docs/1.4.0/archived_design/namespace_resource_quota/index.html index 5012af8c91b..06f8a56e340 100644 --- a/docs/1.4.0/archived_design/namespace_resource_quota/index.html +++ b/docs/1.4.0/archived_design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/1.4.0/archived_design/pluggable_app_management/index.html b/docs/1.4.0/archived_design/pluggable_app_management/index.html index 950b3b3ff89..b7983b9290a 100644 --- a/docs/1.4.0/archived_design/pluggable_app_management/index.html +++ b/docs/1.4.0/archived_design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/1.4.0/archived_design/predicates/index.html b/docs/1.4.0/archived_design/predicates/index.html index 891096d3869..ece0924d568 100644 --- a/docs/1.4.0/archived_design/predicates/index.html +++ b/docs/1.4.0/archived_design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/1.4.0/archived_design/scheduler_core_design/index.html b/docs/1.4.0/archived_design/scheduler_core_design/index.html index 1942afcf0db..55d413f4509 100644 --- a/docs/1.4.0/archived_design/scheduler_core_design/index.html +++ b/docs/1.4.0/archived_design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/1.4.0/design/architecture/index.html b/docs/1.4.0/design/architecture/index.html index d8bd54552ed..7cb1724493f 100644 --- a/docs/1.4.0/design/architecture/index.html +++ b/docs/1.4.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/1.4.0/design/cache_removal/index.html b/docs/1.4.0/design/cache_removal/index.html index d1ccf1cecbf..5a6b3f0b1f4 100644 --- a/docs/1.4.0/design/cache_removal/index.html +++ b/docs/1.4.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/1.4.0/design/config_v2/index.html b/docs/1.4.0/design/config_v2/index.html index ea2d1443bcd..816c096f3c0 100644 --- a/docs/1.4.0/design/config_v2/index.html +++ b/docs/1.4.0/design/config_v2/index.html @@ -4,7 +4,7 @@ Configuration V2 | Apache YuniKorn - + diff --git a/docs/1.4.0/design/gang_scheduling/index.html b/docs/1.4.0/design/gang_scheduling/index.html index 2bf6bb92c45..12128db5524 100644 --- a/docs/1.4.0/design/gang_scheduling/index.html +++ b/docs/1.4.0/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/1.4.0/design/generic_resource/index.html b/docs/1.4.0/design/generic_resource/index.html index 4b25ebb7f0d..79713dc1aad 100644 --- a/docs/1.4.0/design/generic_resource/index.html +++ b/docs/1.4.0/design/generic_resource/index.html @@ -4,7 +4,7 @@ Generic Resource Types in Namespace Quota | Apache YuniKorn - + diff --git a/docs/1.4.0/design/historical_usage_tracking/index.html b/docs/1.4.0/design/historical_usage_tracking/index.html index d97eba13ee4..801e69309fb 100644 --- a/docs/1.4.0/design/historical_usage_tracking/index.html +++ b/docs/1.4.0/design/historical_usage_tracking/index.html @@ -4,7 +4,7 @@ Historical Usage Tracking | Apache YuniKorn - + diff --git a/docs/1.4.0/design/interface_message_simplification/index.html b/docs/1.4.0/design/interface_message_simplification/index.html index 71c66541dc3..7ee30697400 100644 --- a/docs/1.4.0/design/interface_message_simplification/index.html +++ b/docs/1.4.0/design/interface_message_simplification/index.html @@ -4,7 +4,7 @@ Simplifying Interface Messages | Apache YuniKorn - + diff --git a/docs/1.4.0/design/preemption/index.html b/docs/1.4.0/design/preemption/index.html index f3c33a5389a..6a7e14857c4 100644 --- a/docs/1.4.0/design/preemption/index.html +++ b/docs/1.4.0/design/preemption/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/1.4.0/design/priority_scheduling/index.html b/docs/1.4.0/design/priority_scheduling/index.html index e246e276bc0..2de6166a6f1 100644 --- a/docs/1.4.0/design/priority_scheduling/index.html +++ b/docs/1.4.0/design/priority_scheduling/index.html @@ -4,7 +4,7 @@ Priority Scheduling | Apache YuniKorn - + diff --git a/docs/1.4.0/design/resilience/index.html b/docs/1.4.0/design/resilience/index.html index c000f1aef1f..595e3ab81f7 100644 --- a/docs/1.4.0/design/resilience/index.html +++ b/docs/1.4.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/1.4.0/design/scheduler_configuration/index.html b/docs/1.4.0/design/scheduler_configuration/index.html index ef9ae3b3954..889731b5273 100644 --- a/docs/1.4.0/design/scheduler_configuration/index.html +++ b/docs/1.4.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/1.4.0/design/scheduler_object_states/index.html b/docs/1.4.0/design/scheduler_object_states/index.html index 1ec599afc73..06aa8a7e8d7 100644 --- a/docs/1.4.0/design/scheduler_object_states/index.html +++ b/docs/1.4.0/design/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/1.4.0/design/scheduler_plugin/index.html b/docs/1.4.0/design/scheduler_plugin/index.html index 6767898a2b7..383defe248f 100644 --- a/docs/1.4.0/design/scheduler_plugin/index.html +++ b/docs/1.4.0/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/1.4.0/design/simple_preemptor/index.html b/docs/1.4.0/design/simple_preemptor/index.html index 625eabf1fd2..e6835743985 100644 --- a/docs/1.4.0/design/simple_preemptor/index.html +++ b/docs/1.4.0/design/simple_preemptor/index.html @@ -4,7 +4,7 @@ DaemonSet Scheduling using Simple Preemptor | Apache YuniKorn - + diff --git a/docs/1.4.0/design/state_aware_scheduling/index.html b/docs/1.4.0/design/state_aware_scheduling/index.html index bcee8c6a8fa..88dad1c8c21 100644 --- a/docs/1.4.0/design/state_aware_scheduling/index.html +++ b/docs/1.4.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/1.4.0/design/user_based_resource_usage_tracking/index.html b/docs/1.4.0/design/user_based_resource_usage_tracking/index.html index 2eaef293a80..2eee9517f9a 100644 --- a/docs/1.4.0/design/user_based_resource_usage_tracking/index.html +++ b/docs/1.4.0/design/user_based_resource_usage_tracking/index.html @@ -4,7 +4,7 @@ User Based Resource Usage Tracking | Apache YuniKorn - + diff --git a/docs/1.4.0/design/user_group/index.html b/docs/1.4.0/design/user_group/index.html index 897ab68a0d8..2027ca07521 100644 --- a/docs/1.4.0/design/user_group/index.html +++ b/docs/1.4.0/design/user_group/index.html @@ -4,7 +4,7 @@ User/Group handling and lookup design | Apache YuniKorn - + diff --git a/docs/1.4.0/design/user_group_resource_usage_enforcement/index.html b/docs/1.4.0/design/user_group_resource_usage_enforcement/index.html index 6f97e7e1f40..f9f4b708702 100644 --- a/docs/1.4.0/design/user_group_resource_usage_enforcement/index.html +++ b/docs/1.4.0/design/user_group_resource_usage_enforcement/index.html @@ -4,7 +4,7 @@ User Based Quota Enforcement | Apache YuniKorn - + diff --git a/docs/1.4.0/developer_guide/build/index.html b/docs/1.4.0/developer_guide/build/index.html index c15e0dc965a..f78a8468159 100644 --- a/docs/1.4.0/developer_guide/build/index.html +++ b/docs/1.4.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/1.4.0/developer_guide/dependencies/index.html b/docs/1.4.0/developer_guide/dependencies/index.html index cc050bdb30f..336ffba1e82 100644 --- a/docs/1.4.0/developer_guide/dependencies/index.html +++ b/docs/1.4.0/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/1.4.0/developer_guide/deployment/index.html b/docs/1.4.0/developer_guide/deployment/index.html index 635fef84f45..12fc51e17c9 100644 --- a/docs/1.4.0/developer_guide/deployment/index.html +++ b/docs/1.4.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/1.4.0/developer_guide/env_setup/index.html b/docs/1.4.0/developer_guide/env_setup/index.html index a36c75c0439..255458620b1 100644 --- a/docs/1.4.0/developer_guide/env_setup/index.html +++ b/docs/1.4.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/1.4.0/developer_guide/openshift_development/index.html b/docs/1.4.0/developer_guide/openshift_development/index.html index 27aff17e939..1262b806eae 100644 --- a/docs/1.4.0/developer_guide/openshift_development/index.html +++ b/docs/1.4.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/1.4.0/get_started/core_features/index.html b/docs/1.4.0/get_started/core_features/index.html index eb3f4c8deca..3b1e428bbee 100644 --- a/docs/1.4.0/get_started/core_features/index.html +++ b/docs/1.4.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/1.4.0/index.html b/docs/1.4.0/index.html index 81b226a9b11..fd911518330 100644 --- a/docs/1.4.0/index.html +++ b/docs/1.4.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/1.4.0/metrics/queue/index.html b/docs/1.4.0/metrics/queue/index.html index ea2d447243b..c755f5c50a8 100644 --- a/docs/1.4.0/metrics/queue/index.html +++ b/docs/1.4.0/metrics/queue/index.html @@ -4,7 +4,7 @@ Queue | Apache YuniKorn - + diff --git a/docs/1.4.0/metrics/runtime/index.html b/docs/1.4.0/metrics/runtime/index.html index ed45aa32629..803dc4b86be 100644 --- a/docs/1.4.0/metrics/runtime/index.html +++ b/docs/1.4.0/metrics/runtime/index.html @@ -4,7 +4,7 @@ Runtime | Apache YuniKorn - + diff --git a/docs/1.4.0/metrics/scheduler/index.html b/docs/1.4.0/metrics/scheduler/index.html index 51dd64a30af..a9eb206b001 100644 --- a/docs/1.4.0/metrics/scheduler/index.html +++ b/docs/1.4.0/metrics/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.4.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/1.4.0/performance/evaluate_perf_function_with_kubemark/index.html index 650423a55fc..a3ec3f685ca 100644 --- a/docs/1.4.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/1.4.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/1.4.0/performance/metrics/index.html b/docs/1.4.0/performance/metrics/index.html index aebb2cbb02b..7474836c072 100644 --- a/docs/1.4.0/performance/metrics/index.html +++ b/docs/1.4.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/1.4.0/performance/performance_tutorial/index.html b/docs/1.4.0/performance/performance_tutorial/index.html index 65042eba69c..953f4b5c22f 100644 --- a/docs/1.4.0/performance/performance_tutorial/index.html +++ b/docs/1.4.0/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/1.4.0/performance/profiling/index.html b/docs/1.4.0/performance/profiling/index.html index 94373a24810..0dac4848825 100644 --- a/docs/1.4.0/performance/profiling/index.html +++ b/docs/1.4.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/acls/index.html b/docs/1.4.0/user_guide/acls/index.html index 43d9e33ee88..c00f715461c 100644 --- a/docs/1.4.0/user_guide/acls/index.html +++ b/docs/1.4.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/deployment_modes/index.html b/docs/1.4.0/user_guide/deployment_modes/index.html index 3dd422c8730..ed7ac4a3ed1 100644 --- a/docs/1.4.0/user_guide/deployment_modes/index.html +++ b/docs/1.4.0/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/gang_scheduling/index.html b/docs/1.4.0/user_guide/gang_scheduling/index.html index eda24e5e896..be2c3d01540 100644 --- a/docs/1.4.0/user_guide/gang_scheduling/index.html +++ b/docs/1.4.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/1.4.0/user_guide/labels_and_annotations_in_yunikorn/index.html index 77603b35c5b..4baaf250651 100644 --- a/docs/1.4.0/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/1.4.0/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/placement_rules/index.html b/docs/1.4.0/user_guide/placement_rules/index.html index e6f78022fa1..739be1b30e3 100644 --- a/docs/1.4.0/user_guide/placement_rules/index.html +++ b/docs/1.4.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/preemption_cases/index.html b/docs/1.4.0/user_guide/preemption_cases/index.html index 054a3d1b94b..e7431fe4e45 100644 --- a/docs/1.4.0/user_guide/preemption_cases/index.html +++ b/docs/1.4.0/user_guide/preemption_cases/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/priorities/index.html b/docs/1.4.0/user_guide/priorities/index.html index a7a21d775c8..0f04a0f984e 100644 --- a/docs/1.4.0/user_guide/priorities/index.html +++ b/docs/1.4.0/user_guide/priorities/index.html @@ -4,7 +4,7 @@ App & Queue Priorities | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/prometheus/index.html b/docs/1.4.0/user_guide/prometheus/index.html index a5f00f79495..70f2be001be 100644 --- a/docs/1.4.0/user_guide/prometheus/index.html +++ b/docs/1.4.0/user_guide/prometheus/index.html @@ -4,7 +4,7 @@ Prometheus and Grafana | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/queue_config/index.html b/docs/1.4.0/user_guide/queue_config/index.html index 25b765ce616..90cc55f7585 100644 --- a/docs/1.4.0/user_guide/queue_config/index.html +++ b/docs/1.4.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/resource_quota_management/index.html b/docs/1.4.0/user_guide/resource_quota_management/index.html index 6c8f48625f0..48e3ea5c927 100644 --- a/docs/1.4.0/user_guide/resource_quota_management/index.html +++ b/docs/1.4.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/service_config/index.html b/docs/1.4.0/user_guide/service_config/index.html index ca8562a9889..d49cf8426ec 100644 --- a/docs/1.4.0/user_guide/service_config/index.html +++ b/docs/1.4.0/user_guide/service_config/index.html @@ -4,7 +4,7 @@ Service Configuration | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/sorting_policies/index.html b/docs/1.4.0/user_guide/sorting_policies/index.html index 40af8de3383..1d580edfed6 100644 --- a/docs/1.4.0/user_guide/sorting_policies/index.html +++ b/docs/1.4.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/troubleshooting/index.html b/docs/1.4.0/user_guide/troubleshooting/index.html index 1d8cee3dd9f..d06d857f65c 100644 --- a/docs/1.4.0/user_guide/troubleshooting/index.html +++ b/docs/1.4.0/user_guide/troubleshooting/index.html @@ -4,7 +4,7 @@ Troubleshooting | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/use_cases/index.html b/docs/1.4.0/user_guide/use_cases/index.html index 51f3c920f2b..341986e6225 100644 --- a/docs/1.4.0/user_guide/use_cases/index.html +++ b/docs/1.4.0/user_guide/use_cases/index.html @@ -4,7 +4,7 @@ Use Cases | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/usergroup_resolution/index.html b/docs/1.4.0/user_guide/usergroup_resolution/index.html index 65c8a3297e5..0283d2f2392 100644 --- a/docs/1.4.0/user_guide/usergroup_resolution/index.html +++ b/docs/1.4.0/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/workloads/run_flink/index.html b/docs/1.4.0/user_guide/workloads/run_flink/index.html index 7c089716473..4584872074e 100644 --- a/docs/1.4.0/user_guide/workloads/run_flink/index.html +++ b/docs/1.4.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/workloads/run_mpi/index.html b/docs/1.4.0/user_guide/workloads/run_mpi/index.html index 1bd1dc19fcf..48506e35faf 100644 --- a/docs/1.4.0/user_guide/workloads/run_mpi/index.html +++ b/docs/1.4.0/user_guide/workloads/run_mpi/index.html @@ -4,7 +4,7 @@ Run MPI Jobs | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/workloads/run_nvidia/index.html b/docs/1.4.0/user_guide/workloads/run_nvidia/index.html index 5ce2c212915..6cac08c79d7 100644 --- a/docs/1.4.0/user_guide/workloads/run_nvidia/index.html +++ b/docs/1.4.0/user_guide/workloads/run_nvidia/index.html @@ -4,7 +4,7 @@ Run NVIDIA GPU Jobs | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/workloads/run_spark/index.html b/docs/1.4.0/user_guide/workloads/run_spark/index.html index ba1658aa3a3..6231ad428d5 100644 --- a/docs/1.4.0/user_guide/workloads/run_spark/index.html +++ b/docs/1.4.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/workloads/run_tf/index.html b/docs/1.4.0/user_guide/workloads/run_tf/index.html index f5b21d67195..96ecf638ce5 100644 --- a/docs/1.4.0/user_guide/workloads/run_tf/index.html +++ b/docs/1.4.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/1.4.0/user_guide/workloads/workload_overview/index.html b/docs/1.4.0/user_guide/workloads/workload_overview/index.html index c775e3ed08b..065df661410 100644 --- a/docs/1.4.0/user_guide/workloads/workload_overview/index.html +++ b/docs/1.4.0/user_guide/workloads/workload_overview/index.html @@ -4,7 +4,7 @@ Overview | Apache YuniKorn - + diff --git a/docs/1.5.0/api/cluster/index.html b/docs/1.5.0/api/cluster/index.html index 1a57d7518a0..b045b1e88ee 100644 --- a/docs/1.5.0/api/cluster/index.html +++ b/docs/1.5.0/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/1.5.0/api/scheduler/index.html b/docs/1.5.0/api/scheduler/index.html index 5f762947f7b..1bca942e026 100644 --- a/docs/1.5.0/api/scheduler/index.html +++ b/docs/1.5.0/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.5.0/api/system/index.html b/docs/1.5.0/api/system/index.html index befa2e2a2a9..6e7cf9cc177 100644 --- a/docs/1.5.0/api/system/index.html +++ b/docs/1.5.0/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/1.5.0/archived_design/cross_queue_preemption/index.html b/docs/1.5.0/archived_design/cross_queue_preemption/index.html index 9a89007dcd1..aaf8c372b12 100644 --- a/docs/1.5.0/archived_design/cross_queue_preemption/index.html +++ b/docs/1.5.0/archived_design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/1.5.0/archived_design/k8shim/index.html b/docs/1.5.0/archived_design/k8shim/index.html index d8b607d70e4..ccb12b6b5f1 100644 --- a/docs/1.5.0/archived_design/k8shim/index.html +++ b/docs/1.5.0/archived_design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/1.5.0/archived_design/namespace_resource_quota/index.html b/docs/1.5.0/archived_design/namespace_resource_quota/index.html index b829a4f3a60..e6a4f7b1b85 100644 --- a/docs/1.5.0/archived_design/namespace_resource_quota/index.html +++ b/docs/1.5.0/archived_design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/1.5.0/archived_design/pluggable_app_management/index.html b/docs/1.5.0/archived_design/pluggable_app_management/index.html index ab12fcd0f51..f9f28a89d3f 100644 --- a/docs/1.5.0/archived_design/pluggable_app_management/index.html +++ b/docs/1.5.0/archived_design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/1.5.0/archived_design/predicates/index.html b/docs/1.5.0/archived_design/predicates/index.html index 115a4cea77b..d881c352b1a 100644 --- a/docs/1.5.0/archived_design/predicates/index.html +++ b/docs/1.5.0/archived_design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/1.5.0/archived_design/scheduler_core_design/index.html b/docs/1.5.0/archived_design/scheduler_core_design/index.html index f4ba3f26d21..4e7414801ab 100644 --- a/docs/1.5.0/archived_design/scheduler_core_design/index.html +++ b/docs/1.5.0/archived_design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/1.5.0/design/architecture/index.html b/docs/1.5.0/design/architecture/index.html index a48692d5ffa..d77b2619eeb 100644 --- a/docs/1.5.0/design/architecture/index.html +++ b/docs/1.5.0/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/1.5.0/design/cache_removal/index.html b/docs/1.5.0/design/cache_removal/index.html index 913d9357b51..16c66d66adb 100644 --- a/docs/1.5.0/design/cache_removal/index.html +++ b/docs/1.5.0/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/1.5.0/design/config_v2/index.html b/docs/1.5.0/design/config_v2/index.html index eef3d3595a2..73a7f0ae961 100644 --- a/docs/1.5.0/design/config_v2/index.html +++ b/docs/1.5.0/design/config_v2/index.html @@ -4,7 +4,7 @@ Configuration V2 | Apache YuniKorn - + diff --git a/docs/1.5.0/design/gang_scheduling/index.html b/docs/1.5.0/design/gang_scheduling/index.html index a3a71cfd00d..de63ee741aa 100644 --- a/docs/1.5.0/design/gang_scheduling/index.html +++ b/docs/1.5.0/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/1.5.0/design/generic_resource/index.html b/docs/1.5.0/design/generic_resource/index.html index dc381a1e32b..6499fe6138b 100644 --- a/docs/1.5.0/design/generic_resource/index.html +++ b/docs/1.5.0/design/generic_resource/index.html @@ -4,7 +4,7 @@ Generic Resource Types in Namespace Quota | Apache YuniKorn - + diff --git a/docs/1.5.0/design/historical_usage_tracking/index.html b/docs/1.5.0/design/historical_usage_tracking/index.html index e3d08219338..4fcb19040da 100644 --- a/docs/1.5.0/design/historical_usage_tracking/index.html +++ b/docs/1.5.0/design/historical_usage_tracking/index.html @@ -4,7 +4,7 @@ Historical Usage Tracking | Apache YuniKorn - + diff --git a/docs/1.5.0/design/interface_message_simplification/index.html b/docs/1.5.0/design/interface_message_simplification/index.html index 45515f21786..b299a0ccb75 100644 --- a/docs/1.5.0/design/interface_message_simplification/index.html +++ b/docs/1.5.0/design/interface_message_simplification/index.html @@ -4,7 +4,7 @@ Simplifying Interface Messages | Apache YuniKorn - + diff --git a/docs/1.5.0/design/preemption/index.html b/docs/1.5.0/design/preemption/index.html index 83b321481f1..1fc688e55f8 100644 --- a/docs/1.5.0/design/preemption/index.html +++ b/docs/1.5.0/design/preemption/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/1.5.0/design/priority_scheduling/index.html b/docs/1.5.0/design/priority_scheduling/index.html index e02f429c897..ce7fcdc3618 100644 --- a/docs/1.5.0/design/priority_scheduling/index.html +++ b/docs/1.5.0/design/priority_scheduling/index.html @@ -4,7 +4,7 @@ Priority Scheduling | Apache YuniKorn - + diff --git a/docs/1.5.0/design/resilience/index.html b/docs/1.5.0/design/resilience/index.html index de772d3b2c3..19d8d9ed942 100644 --- a/docs/1.5.0/design/resilience/index.html +++ b/docs/1.5.0/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/1.5.0/design/scheduler_configuration/index.html b/docs/1.5.0/design/scheduler_configuration/index.html index badbf0f30b4..ac70dedeed6 100644 --- a/docs/1.5.0/design/scheduler_configuration/index.html +++ b/docs/1.5.0/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/1.5.0/design/scheduler_plugin/index.html b/docs/1.5.0/design/scheduler_plugin/index.html index 82a77887bf1..dd20073bbe9 100644 --- a/docs/1.5.0/design/scheduler_plugin/index.html +++ b/docs/1.5.0/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/1.5.0/design/simple_preemptor/index.html b/docs/1.5.0/design/simple_preemptor/index.html index a62a52520cc..4f1c0e83f2a 100644 --- a/docs/1.5.0/design/simple_preemptor/index.html +++ b/docs/1.5.0/design/simple_preemptor/index.html @@ -4,7 +4,7 @@ DaemonSet Scheduling using Simple Preemptor | Apache YuniKorn - + diff --git a/docs/1.5.0/design/state_aware_scheduling/index.html b/docs/1.5.0/design/state_aware_scheduling/index.html index 6a8b443f72c..f75dc44f8b1 100644 --- a/docs/1.5.0/design/state_aware_scheduling/index.html +++ b/docs/1.5.0/design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/1.5.0/design/user_based_resource_usage_tracking/index.html b/docs/1.5.0/design/user_based_resource_usage_tracking/index.html index 1685e379480..b75eb27f4a3 100644 --- a/docs/1.5.0/design/user_based_resource_usage_tracking/index.html +++ b/docs/1.5.0/design/user_based_resource_usage_tracking/index.html @@ -4,7 +4,7 @@ User Based Resource Usage Tracking | Apache YuniKorn - + diff --git a/docs/1.5.0/design/user_group/index.html b/docs/1.5.0/design/user_group/index.html index 645a1f6cf57..c33161e1150 100644 --- a/docs/1.5.0/design/user_group/index.html +++ b/docs/1.5.0/design/user_group/index.html @@ -4,7 +4,7 @@ User/Group handling and lookup design | Apache YuniKorn - + diff --git a/docs/1.5.0/design/user_group_resource_usage_enforcement/index.html b/docs/1.5.0/design/user_group_resource_usage_enforcement/index.html index 6190f152364..7ac97fdaa87 100644 --- a/docs/1.5.0/design/user_group_resource_usage_enforcement/index.html +++ b/docs/1.5.0/design/user_group_resource_usage_enforcement/index.html @@ -4,7 +4,7 @@ User Based Quota Enforcement | Apache YuniKorn - + diff --git a/docs/1.5.0/developer_guide/build/index.html b/docs/1.5.0/developer_guide/build/index.html index 49ff3410104..335cf0e8589 100644 --- a/docs/1.5.0/developer_guide/build/index.html +++ b/docs/1.5.0/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/1.5.0/developer_guide/dependencies/index.html b/docs/1.5.0/developer_guide/dependencies/index.html index ee255005b88..4ed25118f3a 100644 --- a/docs/1.5.0/developer_guide/dependencies/index.html +++ b/docs/1.5.0/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/1.5.0/developer_guide/deployment/index.html b/docs/1.5.0/developer_guide/deployment/index.html index 5181225c1e0..881fe9dac6e 100644 --- a/docs/1.5.0/developer_guide/deployment/index.html +++ b/docs/1.5.0/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/1.5.0/developer_guide/env_setup/index.html b/docs/1.5.0/developer_guide/env_setup/index.html index 213dbfcf492..702b5c5f0aa 100644 --- a/docs/1.5.0/developer_guide/env_setup/index.html +++ b/docs/1.5.0/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/1.5.0/developer_guide/openshift_development/index.html b/docs/1.5.0/developer_guide/openshift_development/index.html index cfed89e7002..8ebc834438e 100644 --- a/docs/1.5.0/developer_guide/openshift_development/index.html +++ b/docs/1.5.0/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/1.5.0/developer_guide/scheduler_object_states/index.html b/docs/1.5.0/developer_guide/scheduler_object_states/index.html index 7bae6dcb257..93b3a154aa0 100644 --- a/docs/1.5.0/developer_guide/scheduler_object_states/index.html +++ b/docs/1.5.0/developer_guide/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/1.5.0/get_started/core_features/index.html b/docs/1.5.0/get_started/core_features/index.html index 630e834e3a7..0c7f6857cc9 100644 --- a/docs/1.5.0/get_started/core_features/index.html +++ b/docs/1.5.0/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/1.5.0/get_started/version/index.html b/docs/1.5.0/get_started/version/index.html index 8ae09637a41..a11de38a4c6 100644 --- a/docs/1.5.0/get_started/version/index.html +++ b/docs/1.5.0/get_started/version/index.html @@ -4,7 +4,7 @@ Version details | Apache YuniKorn - + diff --git a/docs/1.5.0/index.html b/docs/1.5.0/index.html index f8848d19710..a6b0789a9fa 100644 --- a/docs/1.5.0/index.html +++ b/docs/1.5.0/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/1.5.0/metrics/queue/index.html b/docs/1.5.0/metrics/queue/index.html index 528053a4574..61e715b6040 100644 --- a/docs/1.5.0/metrics/queue/index.html +++ b/docs/1.5.0/metrics/queue/index.html @@ -4,7 +4,7 @@ Queue | Apache YuniKorn - + diff --git a/docs/1.5.0/metrics/runtime/index.html b/docs/1.5.0/metrics/runtime/index.html index 98a585cac9a..94b691b486e 100644 --- a/docs/1.5.0/metrics/runtime/index.html +++ b/docs/1.5.0/metrics/runtime/index.html @@ -4,7 +4,7 @@ Runtime | Apache YuniKorn - + diff --git a/docs/1.5.0/metrics/scheduler/index.html b/docs/1.5.0/metrics/scheduler/index.html index 7c6666e16fa..2ee85746930 100644 --- a/docs/1.5.0/metrics/scheduler/index.html +++ b/docs/1.5.0/metrics/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/1.5.0/performance/evaluate_perf_function_with_kubemark/index.html b/docs/1.5.0/performance/evaluate_perf_function_with_kubemark/index.html index 798fe780211..718fad8e6f4 100644 --- a/docs/1.5.0/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/1.5.0/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/1.5.0/performance/evaluate_perf_function_with_kwok/index.html b/docs/1.5.0/performance/evaluate_perf_function_with_kwok/index.html index 0b8048fa470..c23cf40ea32 100644 --- a/docs/1.5.0/performance/evaluate_perf_function_with_kwok/index.html +++ b/docs/1.5.0/performance/evaluate_perf_function_with_kwok/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with KWOK | Apache YuniKorn - + diff --git a/docs/1.5.0/performance/metrics/index.html b/docs/1.5.0/performance/metrics/index.html index f95f7426729..2029866da0e 100644 --- a/docs/1.5.0/performance/metrics/index.html +++ b/docs/1.5.0/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/1.5.0/performance/performance_tutorial/index.html b/docs/1.5.0/performance/performance_tutorial/index.html index 591e253bbfb..da46ade25cd 100644 --- a/docs/1.5.0/performance/performance_tutorial/index.html +++ b/docs/1.5.0/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/1.5.0/performance/profiling/index.html b/docs/1.5.0/performance/profiling/index.html index 89e5acd7c1b..be8232a60dd 100644 --- a/docs/1.5.0/performance/profiling/index.html +++ b/docs/1.5.0/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/acls/index.html b/docs/1.5.0/user_guide/acls/index.html index 0656c32793c..2811f74a9e0 100644 --- a/docs/1.5.0/user_guide/acls/index.html +++ b/docs/1.5.0/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/deployment_modes/index.html b/docs/1.5.0/user_guide/deployment_modes/index.html index 6ad81018798..79aa5cea7bd 100644 --- a/docs/1.5.0/user_guide/deployment_modes/index.html +++ b/docs/1.5.0/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/gang_scheduling/index.html b/docs/1.5.0/user_guide/gang_scheduling/index.html index 6d5d49fb4f3..6f578052a46 100644 --- a/docs/1.5.0/user_guide/gang_scheduling/index.html +++ b/docs/1.5.0/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/1.5.0/user_guide/labels_and_annotations_in_yunikorn/index.html index 2464410c285..edcc610bf6a 100644 --- a/docs/1.5.0/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/1.5.0/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/placement_rules/index.html b/docs/1.5.0/user_guide/placement_rules/index.html index c494c9c1cbb..bc93c33875e 100644 --- a/docs/1.5.0/user_guide/placement_rules/index.html +++ b/docs/1.5.0/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/preemption_cases/index.html b/docs/1.5.0/user_guide/preemption_cases/index.html index 2a29749922f..8954c734cef 100644 --- a/docs/1.5.0/user_guide/preemption_cases/index.html +++ b/docs/1.5.0/user_guide/preemption_cases/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/priorities/index.html b/docs/1.5.0/user_guide/priorities/index.html index cb6bc01ca12..28edfa6076d 100644 --- a/docs/1.5.0/user_guide/priorities/index.html +++ b/docs/1.5.0/user_guide/priorities/index.html @@ -4,7 +4,7 @@ App & Queue Priorities | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/prometheus/index.html b/docs/1.5.0/user_guide/prometheus/index.html index 6fdb33a6e7d..cda2f32e77a 100644 --- a/docs/1.5.0/user_guide/prometheus/index.html +++ b/docs/1.5.0/user_guide/prometheus/index.html @@ -4,7 +4,7 @@ Prometheus and Grafana | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/queue_config/index.html b/docs/1.5.0/user_guide/queue_config/index.html index 2ab6576d134..b3b4669d845 100644 --- a/docs/1.5.0/user_guide/queue_config/index.html +++ b/docs/1.5.0/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/resource_quota_management/index.html b/docs/1.5.0/user_guide/resource_quota_management/index.html index 5295c9ad79c..5aef0e87d03 100644 --- a/docs/1.5.0/user_guide/resource_quota_management/index.html +++ b/docs/1.5.0/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/service_config/index.html b/docs/1.5.0/user_guide/service_config/index.html index ff6575f0be5..4943c5ce508 100644 --- a/docs/1.5.0/user_guide/service_config/index.html +++ b/docs/1.5.0/user_guide/service_config/index.html @@ -4,7 +4,7 @@ Service Configuration | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/sorting_policies/index.html b/docs/1.5.0/user_guide/sorting_policies/index.html index 91251e0c3cf..7baa735a59b 100644 --- a/docs/1.5.0/user_guide/sorting_policies/index.html +++ b/docs/1.5.0/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/troubleshooting/index.html b/docs/1.5.0/user_guide/troubleshooting/index.html index 21fd6ff33a7..7d3ad668a1b 100644 --- a/docs/1.5.0/user_guide/troubleshooting/index.html +++ b/docs/1.5.0/user_guide/troubleshooting/index.html @@ -4,7 +4,7 @@ Troubleshooting | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/use_cases/index.html b/docs/1.5.0/user_guide/use_cases/index.html index 1ce1cc61070..5de499c0dc6 100644 --- a/docs/1.5.0/user_guide/use_cases/index.html +++ b/docs/1.5.0/user_guide/use_cases/index.html @@ -4,7 +4,7 @@ Use Cases | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/usergroup_resolution/index.html b/docs/1.5.0/user_guide/usergroup_resolution/index.html index b818cca402c..1c6d87249ad 100644 --- a/docs/1.5.0/user_guide/usergroup_resolution/index.html +++ b/docs/1.5.0/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/workloads/run_flink/index.html b/docs/1.5.0/user_guide/workloads/run_flink/index.html index b61b00c1a1e..2f056ff917d 100644 --- a/docs/1.5.0/user_guide/workloads/run_flink/index.html +++ b/docs/1.5.0/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/workloads/run_mpi/index.html b/docs/1.5.0/user_guide/workloads/run_mpi/index.html index 65d7a298742..b4135196521 100644 --- a/docs/1.5.0/user_guide/workloads/run_mpi/index.html +++ b/docs/1.5.0/user_guide/workloads/run_mpi/index.html @@ -4,7 +4,7 @@ Run MPI Jobs | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/workloads/run_nvidia/index.html b/docs/1.5.0/user_guide/workloads/run_nvidia/index.html index 41bddd04d46..9e678b21bf5 100644 --- a/docs/1.5.0/user_guide/workloads/run_nvidia/index.html +++ b/docs/1.5.0/user_guide/workloads/run_nvidia/index.html @@ -4,7 +4,7 @@ Run NVIDIA GPU Jobs | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/workloads/run_spark/index.html b/docs/1.5.0/user_guide/workloads/run_spark/index.html index 1375bf4b73b..f5ef7b53cb3 100644 --- a/docs/1.5.0/user_guide/workloads/run_spark/index.html +++ b/docs/1.5.0/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/workloads/run_tf/index.html b/docs/1.5.0/user_guide/workloads/run_tf/index.html index 8826b295688..0a052103ba2 100644 --- a/docs/1.5.0/user_guide/workloads/run_tf/index.html +++ b/docs/1.5.0/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/1.5.0/user_guide/workloads/workload_overview/index.html b/docs/1.5.0/user_guide/workloads/workload_overview/index.html index bd397c9fa15..d3420795f30 100644 --- a/docs/1.5.0/user_guide/workloads/workload_overview/index.html +++ b/docs/1.5.0/user_guide/workloads/workload_overview/index.html @@ -4,7 +4,7 @@ Overview | Apache YuniKorn - + diff --git a/docs/api/cluster/index.html b/docs/api/cluster/index.html index c7f600b5782..72629afcf05 100644 --- a/docs/api/cluster/index.html +++ b/docs/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/api/scheduler/index.html b/docs/api/scheduler/index.html index a783420a19b..75262a9221d 100644 --- a/docs/api/scheduler/index.html +++ b/docs/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/api/system/index.html b/docs/api/system/index.html index 54cdd80c815..ea4b0f9fea8 100644 --- a/docs/api/system/index.html +++ b/docs/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/archived_design/cross_queue_preemption/index.html b/docs/archived_design/cross_queue_preemption/index.html index 764bf1727d9..36061a0b996 100644 --- a/docs/archived_design/cross_queue_preemption/index.html +++ b/docs/archived_design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/archived_design/k8shim/index.html b/docs/archived_design/k8shim/index.html index 4ca3d199db4..062f2769cf6 100644 --- a/docs/archived_design/k8shim/index.html +++ b/docs/archived_design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/archived_design/namespace_resource_quota/index.html b/docs/archived_design/namespace_resource_quota/index.html index 04b3cb3a752..17fab8ae422 100644 --- a/docs/archived_design/namespace_resource_quota/index.html +++ b/docs/archived_design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/archived_design/pluggable_app_management/index.html b/docs/archived_design/pluggable_app_management/index.html index 50c72c81999..e2f75bd6ba4 100644 --- a/docs/archived_design/pluggable_app_management/index.html +++ b/docs/archived_design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/archived_design/predicates/index.html b/docs/archived_design/predicates/index.html index adbc8e598d7..a450222ec91 100644 --- a/docs/archived_design/predicates/index.html +++ b/docs/archived_design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/archived_design/scheduler_core_design/index.html b/docs/archived_design/scheduler_core_design/index.html index cb1a6bd86b1..256a31a12cd 100644 --- a/docs/archived_design/scheduler_core_design/index.html +++ b/docs/archived_design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/archived_design/state_aware_scheduling/index.html b/docs/archived_design/state_aware_scheduling/index.html index 99ad870b222..90a9d6bb1c7 100644 --- a/docs/archived_design/state_aware_scheduling/index.html +++ b/docs/archived_design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/design/architecture/index.html b/docs/design/architecture/index.html index 41856abb10c..cb3b02eb514 100644 --- a/docs/design/architecture/index.html +++ b/docs/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/design/cache_removal/index.html b/docs/design/cache_removal/index.html index 4e643445875..dd077964e31 100644 --- a/docs/design/cache_removal/index.html +++ b/docs/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/design/config_v2/index.html b/docs/design/config_v2/index.html index dfe12140650..b01f6499984 100644 --- a/docs/design/config_v2/index.html +++ b/docs/design/config_v2/index.html @@ -4,7 +4,7 @@ Configuration V2 | Apache YuniKorn - + diff --git a/docs/design/gang_scheduling/index.html b/docs/design/gang_scheduling/index.html index 46d68ef6d62..3c33139860e 100644 --- a/docs/design/gang_scheduling/index.html +++ b/docs/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/design/generic_resource/index.html b/docs/design/generic_resource/index.html index 180927dbee5..b6909ac5c6a 100644 --- a/docs/design/generic_resource/index.html +++ b/docs/design/generic_resource/index.html @@ -4,7 +4,7 @@ Generic Resource Types in Namespace Quota | Apache YuniKorn - + diff --git a/docs/design/historical_usage_tracking/index.html b/docs/design/historical_usage_tracking/index.html index a15bb5d95dd..62797bfed1a 100644 --- a/docs/design/historical_usage_tracking/index.html +++ b/docs/design/historical_usage_tracking/index.html @@ -4,7 +4,7 @@ Historical Usage Tracking | Apache YuniKorn - + diff --git a/docs/design/interface_message_simplification/index.html b/docs/design/interface_message_simplification/index.html index 6c2e0322d43..08283dc7e98 100644 --- a/docs/design/interface_message_simplification/index.html +++ b/docs/design/interface_message_simplification/index.html @@ -4,7 +4,7 @@ Simplifying Interface Messages | Apache YuniKorn - + diff --git a/docs/design/preemption/index.html b/docs/design/preemption/index.html index ad4ea1b833e..78270363bd9 100644 --- a/docs/design/preemption/index.html +++ b/docs/design/preemption/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/design/priority_scheduling/index.html b/docs/design/priority_scheduling/index.html index 4cd6d783ef8..3367e68d7a8 100644 --- a/docs/design/priority_scheduling/index.html +++ b/docs/design/priority_scheduling/index.html @@ -4,7 +4,7 @@ Priority Scheduling | Apache YuniKorn - + diff --git a/docs/design/resilience/index.html b/docs/design/resilience/index.html index 9e2e1c9777f..5877224b09f 100644 --- a/docs/design/resilience/index.html +++ b/docs/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/design/scheduler_configuration/index.html b/docs/design/scheduler_configuration/index.html index 9b06349e2be..6dcb97e0293 100644 --- a/docs/design/scheduler_configuration/index.html +++ b/docs/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/design/scheduler_plugin/index.html b/docs/design/scheduler_plugin/index.html index 0bfa1e9c4fe..478ab1af215 100644 --- a/docs/design/scheduler_plugin/index.html +++ b/docs/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/design/simple_preemptor/index.html b/docs/design/simple_preemptor/index.html index 5f2de53215b..e46f7fafd4a 100644 --- a/docs/design/simple_preemptor/index.html +++ b/docs/design/simple_preemptor/index.html @@ -4,7 +4,7 @@ DaemonSet Scheduling using Simple Preemptor | Apache YuniKorn - + diff --git a/docs/design/user_based_resource_usage_tracking/index.html b/docs/design/user_based_resource_usage_tracking/index.html index 92b508826fd..11352687198 100644 --- a/docs/design/user_based_resource_usage_tracking/index.html +++ b/docs/design/user_based_resource_usage_tracking/index.html @@ -4,7 +4,7 @@ User Based Resource Usage Tracking | Apache YuniKorn - + diff --git a/docs/design/user_group/index.html b/docs/design/user_group/index.html index 38fb3146541..c2c8578106c 100644 --- a/docs/design/user_group/index.html +++ b/docs/design/user_group/index.html @@ -4,7 +4,7 @@ User/Group handling and lookup design | Apache YuniKorn - + diff --git a/docs/design/user_group_resource_usage_enforcement/index.html b/docs/design/user_group_resource_usage_enforcement/index.html index 1cc05adfc56..98b958b8926 100644 --- a/docs/design/user_group_resource_usage_enforcement/index.html +++ b/docs/design/user_group_resource_usage_enforcement/index.html @@ -4,7 +4,7 @@ User Based Quota Enforcement | Apache YuniKorn - + diff --git a/docs/developer_guide/build/index.html b/docs/developer_guide/build/index.html index f570ddbce4c..2941c051cb4 100644 --- a/docs/developer_guide/build/index.html +++ b/docs/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/developer_guide/dependencies/index.html b/docs/developer_guide/dependencies/index.html index 51f31cfa9ab..add674b9b80 100644 --- a/docs/developer_guide/dependencies/index.html +++ b/docs/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/developer_guide/deployment/index.html b/docs/developer_guide/deployment/index.html index f334c88d131..ba92337d229 100644 --- a/docs/developer_guide/deployment/index.html +++ b/docs/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + diff --git a/docs/developer_guide/e2e_test/index.html b/docs/developer_guide/e2e_test/index.html index ac34b8252c2..1c6ee87c8a7 100644 --- a/docs/developer_guide/e2e_test/index.html +++ b/docs/developer_guide/e2e_test/index.html @@ -4,7 +4,7 @@ End-to-End Testing | Apache YuniKorn - + diff --git a/docs/developer_guide/env_setup/index.html b/docs/developer_guide/env_setup/index.html index 250c96622b9..a79bc1bc3b3 100644 --- a/docs/developer_guide/env_setup/index.html +++ b/docs/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/developer_guide/openshift_development/index.html b/docs/developer_guide/openshift_development/index.html index 0ce47a5787f..2b17a57489e 100644 --- a/docs/developer_guide/openshift_development/index.html +++ b/docs/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/developer_guide/scheduler_object_states/index.html b/docs/developer_guide/scheduler_object_states/index.html index fdd8da645f1..87a8783f2d1 100644 --- a/docs/developer_guide/scheduler_object_states/index.html +++ b/docs/developer_guide/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/get_started/core_features/index.html b/docs/get_started/core_features/index.html index 6ce42c01bdd..b2a024eae14 100644 --- a/docs/get_started/core_features/index.html +++ b/docs/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/get_started/version/index.html b/docs/get_started/version/index.html index d02ab4f198d..662ce9259c0 100644 --- a/docs/get_started/version/index.html +++ b/docs/get_started/version/index.html @@ -4,7 +4,7 @@ Version details | Apache YuniKorn - + diff --git a/docs/index.html b/docs/index.html index 105728fe8fe..8d4ce747b99 100644 --- a/docs/index.html +++ b/docs/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/metrics/queue/index.html b/docs/metrics/queue/index.html index 8a2c8cc98b1..f797b9faa4c 100644 --- a/docs/metrics/queue/index.html +++ b/docs/metrics/queue/index.html @@ -4,7 +4,7 @@ Queue | Apache YuniKorn - + diff --git a/docs/metrics/runtime/index.html b/docs/metrics/runtime/index.html index 1bb1c08d0f1..0a932b65cc5 100644 --- a/docs/metrics/runtime/index.html +++ b/docs/metrics/runtime/index.html @@ -4,7 +4,7 @@ Runtime | Apache YuniKorn - + diff --git a/docs/metrics/scheduler/index.html b/docs/metrics/scheduler/index.html index c5a2749fcbf..979502db530 100644 --- a/docs/metrics/scheduler/index.html +++ b/docs/metrics/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/next/api/cluster/index.html b/docs/next/api/cluster/index.html index b351b45a472..594a9246daf 100644 --- a/docs/next/api/cluster/index.html +++ b/docs/next/api/cluster/index.html @@ -4,7 +4,7 @@ Cluster | Apache YuniKorn - + diff --git a/docs/next/api/scheduler/index.html b/docs/next/api/scheduler/index.html index 34cf282bd2e..68b6ef142f3 100644 --- a/docs/next/api/scheduler/index.html +++ b/docs/next/api/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/next/api/system/index.html b/docs/next/api/system/index.html index 07ad9f979a8..12457d3023d 100644 --- a/docs/next/api/system/index.html +++ b/docs/next/api/system/index.html @@ -4,7 +4,7 @@ System | Apache YuniKorn - + diff --git a/docs/next/archived_design/cross_queue_preemption/index.html b/docs/next/archived_design/cross_queue_preemption/index.html index 48e9053c238..c304e40ccc1 100644 --- a/docs/next/archived_design/cross_queue_preemption/index.html +++ b/docs/next/archived_design/cross_queue_preemption/index.html @@ -4,7 +4,7 @@ Cross Queue Preemption | Apache YuniKorn - + diff --git a/docs/next/archived_design/k8shim/index.html b/docs/next/archived_design/k8shim/index.html index 7c77198182e..8e722e089bc 100644 --- a/docs/next/archived_design/k8shim/index.html +++ b/docs/next/archived_design/k8shim/index.html @@ -4,7 +4,7 @@ Kubernetes Shim Design | Apache YuniKorn - + diff --git a/docs/next/archived_design/namespace_resource_quota/index.html b/docs/next/archived_design/namespace_resource_quota/index.html index 8a00bd45f14..4fc32621783 100644 --- a/docs/next/archived_design/namespace_resource_quota/index.html +++ b/docs/next/archived_design/namespace_resource_quota/index.html @@ -4,7 +4,7 @@ Namespace Resource Quota | Apache YuniKorn - + diff --git a/docs/next/archived_design/pluggable_app_management/index.html b/docs/next/archived_design/pluggable_app_management/index.html index 2459876ce2e..b6dd63e7b3c 100644 --- a/docs/next/archived_design/pluggable_app_management/index.html +++ b/docs/next/archived_design/pluggable_app_management/index.html @@ -4,7 +4,7 @@ Pluggable App Management | Apache YuniKorn - + diff --git a/docs/next/archived_design/predicates/index.html b/docs/next/archived_design/predicates/index.html index 046a142f8d6..dc937572132 100644 --- a/docs/next/archived_design/predicates/index.html +++ b/docs/next/archived_design/predicates/index.html @@ -4,7 +4,7 @@ Support K8s Predicates | Apache YuniKorn - + diff --git a/docs/next/archived_design/scheduler_core_design/index.html b/docs/next/archived_design/scheduler_core_design/index.html index 444b7e962f8..03ba9e27a1e 100644 --- a/docs/next/archived_design/scheduler_core_design/index.html +++ b/docs/next/archived_design/scheduler_core_design/index.html @@ -4,7 +4,7 @@ Scheduler Core Design | Apache YuniKorn - + diff --git a/docs/next/archived_design/state_aware_scheduling/index.html b/docs/next/archived_design/state_aware_scheduling/index.html index 0bf9041a97b..e72cf349190 100644 --- a/docs/next/archived_design/state_aware_scheduling/index.html +++ b/docs/next/archived_design/state_aware_scheduling/index.html @@ -4,7 +4,7 @@ Batch Workloads Ordering with StateAware Policy | Apache YuniKorn - + diff --git a/docs/next/design/architecture/index.html b/docs/next/design/architecture/index.html index 27b9fbd8600..b4af766332d 100644 --- a/docs/next/design/architecture/index.html +++ b/docs/next/design/architecture/index.html @@ -4,7 +4,7 @@ Architecture | Apache YuniKorn - + diff --git a/docs/next/design/cache_removal/index.html b/docs/next/design/cache_removal/index.html index 62b4de7585d..fb634485c46 100644 --- a/docs/next/design/cache_removal/index.html +++ b/docs/next/design/cache_removal/index.html @@ -4,7 +4,7 @@ Scheduler cache removal design | Apache YuniKorn - + diff --git a/docs/next/design/config_v2/index.html b/docs/next/design/config_v2/index.html index b7de4da7248..232c30dfeb1 100644 --- a/docs/next/design/config_v2/index.html +++ b/docs/next/design/config_v2/index.html @@ -4,7 +4,7 @@ Configuration V2 | Apache YuniKorn - + diff --git a/docs/next/design/gang_scheduling/index.html b/docs/next/design/gang_scheduling/index.html index e08ab6c2ae6..05f7e4a0a41 100644 --- a/docs/next/design/gang_scheduling/index.html +++ b/docs/next/design/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang scheduling design | Apache YuniKorn - + diff --git a/docs/next/design/generic_resource/index.html b/docs/next/design/generic_resource/index.html index 7ccb67f4f8e..969337f5d62 100644 --- a/docs/next/design/generic_resource/index.html +++ b/docs/next/design/generic_resource/index.html @@ -4,7 +4,7 @@ Generic Resource Types in Namespace Quota | Apache YuniKorn - + diff --git a/docs/next/design/historical_usage_tracking/index.html b/docs/next/design/historical_usage_tracking/index.html index 63f888cd646..8fa4242b93a 100644 --- a/docs/next/design/historical_usage_tracking/index.html +++ b/docs/next/design/historical_usage_tracking/index.html @@ -4,7 +4,7 @@ Historical Usage Tracking | Apache YuniKorn - + diff --git a/docs/next/design/interface_message_simplification/index.html b/docs/next/design/interface_message_simplification/index.html index 148d3785a87..a5c9d76ddd2 100644 --- a/docs/next/design/interface_message_simplification/index.html +++ b/docs/next/design/interface_message_simplification/index.html @@ -4,7 +4,7 @@ Simplifying Interface Messages | Apache YuniKorn - + diff --git a/docs/next/design/preemption/index.html b/docs/next/design/preemption/index.html index 9691392a53f..7bb2d0fd65b 100644 --- a/docs/next/design/preemption/index.html +++ b/docs/next/design/preemption/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/next/design/priority_scheduling/index.html b/docs/next/design/priority_scheduling/index.html index d91559cfeba..c9ccb091d7b 100644 --- a/docs/next/design/priority_scheduling/index.html +++ b/docs/next/design/priority_scheduling/index.html @@ -4,7 +4,7 @@ Priority Scheduling | Apache YuniKorn - + diff --git a/docs/next/design/resilience/index.html b/docs/next/design/resilience/index.html index d160a9862d7..a3799303b31 100644 --- a/docs/next/design/resilience/index.html +++ b/docs/next/design/resilience/index.html @@ -4,7 +4,7 @@ Resilience | Apache YuniKorn - + diff --git a/docs/next/design/scheduler_configuration/index.html b/docs/next/design/scheduler_configuration/index.html index 70eafc3d0a4..b76acf6dd2c 100644 --- a/docs/next/design/scheduler_configuration/index.html +++ b/docs/next/design/scheduler_configuration/index.html @@ -4,7 +4,7 @@ Scheduler Configuration | Apache YuniKorn - + diff --git a/docs/next/design/scheduler_plugin/index.html b/docs/next/design/scheduler_plugin/index.html index daf6284f1ff..be2d325563f 100644 --- a/docs/next/design/scheduler_plugin/index.html +++ b/docs/next/design/scheduler_plugin/index.html @@ -4,7 +4,7 @@ K8s Scheduler Plugin | Apache YuniKorn - + diff --git a/docs/next/design/simple_preemptor/index.html b/docs/next/design/simple_preemptor/index.html index 19dc1e06994..b9019e7d8ca 100644 --- a/docs/next/design/simple_preemptor/index.html +++ b/docs/next/design/simple_preemptor/index.html @@ -4,7 +4,7 @@ DaemonSet Scheduling using Simple Preemptor | Apache YuniKorn - + diff --git a/docs/next/design/user_based_resource_usage_tracking/index.html b/docs/next/design/user_based_resource_usage_tracking/index.html index 7e6b92cb53e..3795c0d3d75 100644 --- a/docs/next/design/user_based_resource_usage_tracking/index.html +++ b/docs/next/design/user_based_resource_usage_tracking/index.html @@ -4,7 +4,7 @@ User Based Resource Usage Tracking | Apache YuniKorn - + diff --git a/docs/next/design/user_group/index.html b/docs/next/design/user_group/index.html index b315208b487..78110a11f1e 100644 --- a/docs/next/design/user_group/index.html +++ b/docs/next/design/user_group/index.html @@ -4,7 +4,7 @@ User/Group handling and lookup design | Apache YuniKorn - + diff --git a/docs/next/design/user_group_resource_usage_enforcement/index.html b/docs/next/design/user_group_resource_usage_enforcement/index.html index ffbef399c65..1833d99ffd5 100644 --- a/docs/next/design/user_group_resource_usage_enforcement/index.html +++ b/docs/next/design/user_group_resource_usage_enforcement/index.html @@ -4,7 +4,7 @@ User Based Quota Enforcement | Apache YuniKorn - + diff --git a/docs/next/developer_guide/build/index.html b/docs/next/developer_guide/build/index.html index 74f5b92085b..1ddd5f7706f 100644 --- a/docs/next/developer_guide/build/index.html +++ b/docs/next/developer_guide/build/index.html @@ -4,7 +4,7 @@ Build and Run | Apache YuniKorn - + diff --git a/docs/next/developer_guide/dependencies/index.html b/docs/next/developer_guide/dependencies/index.html index 265b21dcd3c..c06418b624d 100644 --- a/docs/next/developer_guide/dependencies/index.html +++ b/docs/next/developer_guide/dependencies/index.html @@ -4,7 +4,7 @@ Go module updates | Apache YuniKorn - + diff --git a/docs/next/developer_guide/deployment/index.html b/docs/next/developer_guide/deployment/index.html index c1f968c64b8..ef4a4214297 100644 --- a/docs/next/developer_guide/deployment/index.html +++ b/docs/next/developer_guide/deployment/index.html @@ -4,7 +4,7 @@ Deploy to Kubernetes | Apache YuniKorn - + @@ -63,7 +63,7 @@

Create the used by the webhook server to store TLS certificates and keys. See admission-controller-secrets.yaml.

kubectl create -f deployments/scheduler/admission-controller-secrets.yaml

Deploy the Admission Controller​

-

Now we can deploy the admission controller as a service. This will automatically validate/modify incoming requests and objects, respectively, in accordance with the example in Deploy the Scheduler. See the contents of the admission controller deployment and service in admission-controller.yaml.

+

Now we can deploy the admission controller as a service. This will automatically validate/modify incoming requests and objects, respectively, in accordance with the example in Deploy the Scheduler. See the contents of the admission controller deployment and service in admission-controller.yaml.

kubectl create -f deployments/scheduler/admission-controller.yaml

Access to the web UI​

When the scheduler is deployed, the web UI is also deployed in a container. diff --git a/docs/next/developer_guide/e2e_test/index.html b/docs/next/developer_guide/e2e_test/index.html index fe4884b2a48..0e23ec398dc 100644 --- a/docs/next/developer_guide/e2e_test/index.html +++ b/docs/next/developer_guide/e2e_test/index.html @@ -4,7 +4,7 @@ End-to-End Testing | Apache YuniKorn - + diff --git a/docs/next/developer_guide/env_setup/index.html b/docs/next/developer_guide/env_setup/index.html index 87cd7c78294..7e7455aea78 100644 --- a/docs/next/developer_guide/env_setup/index.html +++ b/docs/next/developer_guide/env_setup/index.html @@ -4,7 +4,7 @@ Dev Environment Setup | Apache YuniKorn - + diff --git a/docs/next/developer_guide/openshift_development/index.html b/docs/next/developer_guide/openshift_development/index.html index 86c18a2b404..6f1feb87365 100644 --- a/docs/next/developer_guide/openshift_development/index.html +++ b/docs/next/developer_guide/openshift_development/index.html @@ -4,7 +4,7 @@ Development in CodeReady Containers | Apache YuniKorn - + diff --git a/docs/next/developer_guide/scheduler_object_states/index.html b/docs/next/developer_guide/scheduler_object_states/index.html index 64cfd691c40..0c99f1cdf4e 100644 --- a/docs/next/developer_guide/scheduler_object_states/index.html +++ b/docs/next/developer_guide/scheduler_object_states/index.html @@ -4,7 +4,7 @@ Scheduler Object States | Apache YuniKorn - + diff --git a/docs/next/get_started/core_features/index.html b/docs/next/get_started/core_features/index.html index e823f48ecb2..e832042ffea 100644 --- a/docs/next/get_started/core_features/index.html +++ b/docs/next/get_started/core_features/index.html @@ -4,7 +4,7 @@ Features | Apache YuniKorn - + diff --git a/docs/next/get_started/version/index.html b/docs/next/get_started/version/index.html index 437112fb4c2..0af908cdf10 100644 --- a/docs/next/get_started/version/index.html +++ b/docs/next/get_started/version/index.html @@ -4,7 +4,7 @@ Version details | Apache YuniKorn - + diff --git a/docs/next/index.html b/docs/next/index.html index 61ea92830d6..63c4a69d34e 100644 --- a/docs/next/index.html +++ b/docs/next/index.html @@ -4,7 +4,7 @@ Get Started | Apache YuniKorn - + diff --git a/docs/next/metrics/queue/index.html b/docs/next/metrics/queue/index.html index af372e8fa85..1cfe414d2da 100644 --- a/docs/next/metrics/queue/index.html +++ b/docs/next/metrics/queue/index.html @@ -4,7 +4,7 @@ Queue | Apache YuniKorn - + diff --git a/docs/next/metrics/runtime/index.html b/docs/next/metrics/runtime/index.html index c5f3cb669b3..ab2775b50cc 100644 --- a/docs/next/metrics/runtime/index.html +++ b/docs/next/metrics/runtime/index.html @@ -4,7 +4,7 @@ Runtime | Apache YuniKorn - + diff --git a/docs/next/metrics/scheduler/index.html b/docs/next/metrics/scheduler/index.html index b77327b6ad2..ba7f89ff1a0 100644 --- a/docs/next/metrics/scheduler/index.html +++ b/docs/next/metrics/scheduler/index.html @@ -4,7 +4,7 @@ Scheduler | Apache YuniKorn - + diff --git a/docs/next/performance/evaluate_perf_function_with_kubemark/index.html b/docs/next/performance/evaluate_perf_function_with_kubemark/index.html index b14a6538326..ce6451d1b45 100644 --- a/docs/next/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/next/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/next/performance/evaluate_perf_function_with_kwok/index.html b/docs/next/performance/evaluate_perf_function_with_kwok/index.html index 698e6ba9b0f..38d88414c3c 100644 --- a/docs/next/performance/evaluate_perf_function_with_kwok/index.html +++ b/docs/next/performance/evaluate_perf_function_with_kwok/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with KWOK | Apache YuniKorn - + diff --git a/docs/next/performance/metrics/index.html b/docs/next/performance/metrics/index.html index 8a61943913f..1913688449f 100644 --- a/docs/next/performance/metrics/index.html +++ b/docs/next/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/next/performance/performance_tutorial/index.html b/docs/next/performance/performance_tutorial/index.html index 2d1a22ef644..1c5ca3665bd 100644 --- a/docs/next/performance/performance_tutorial/index.html +++ b/docs/next/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/next/performance/profiling/index.html b/docs/next/performance/profiling/index.html index 57a5a1a0b6d..afcc3ca1b45 100644 --- a/docs/next/performance/profiling/index.html +++ b/docs/next/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/next/user_guide/acls/index.html b/docs/next/user_guide/acls/index.html index 2992db9777d..050d9bea773 100644 --- a/docs/next/user_guide/acls/index.html +++ b/docs/next/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/next/user_guide/deployment_modes/index.html b/docs/next/user_guide/deployment_modes/index.html index b2e50a2fe02..9b55bc22e02 100644 --- a/docs/next/user_guide/deployment_modes/index.html +++ b/docs/next/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/next/user_guide/event_system/index.html b/docs/next/user_guide/event_system/index.html index ba6191f5dfc..5bfbc64172a 100644 --- a/docs/next/user_guide/event_system/index.html +++ b/docs/next/user_guide/event_system/index.html @@ -4,7 +4,7 @@ Event System | Apache YuniKorn - + diff --git a/docs/next/user_guide/gang_scheduling/index.html b/docs/next/user_guide/gang_scheduling/index.html index aba43c090a8..3df7ca3d585 100644 --- a/docs/next/user_guide/gang_scheduling/index.html +++ b/docs/next/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/next/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/next/user_guide/labels_and_annotations_in_yunikorn/index.html index dcffaf2c06d..56d99a44dc0 100644 --- a/docs/next/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/next/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/next/user_guide/placement_rules/index.html b/docs/next/user_guide/placement_rules/index.html index 2ec51fa0daf..26872515d1f 100644 --- a/docs/next/user_guide/placement_rules/index.html +++ b/docs/next/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/next/user_guide/preemption_cases/index.html b/docs/next/user_guide/preemption_cases/index.html index 9f641e6e3ea..b915972f17e 100644 --- a/docs/next/user_guide/preemption_cases/index.html +++ b/docs/next/user_guide/preemption_cases/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/next/user_guide/priorities/index.html b/docs/next/user_guide/priorities/index.html index 8b9c6fa4026..5ad29f4b910 100644 --- a/docs/next/user_guide/priorities/index.html +++ b/docs/next/user_guide/priorities/index.html @@ -4,7 +4,7 @@ App & Queue Priorities | Apache YuniKorn - + diff --git a/docs/next/user_guide/prometheus/index.html b/docs/next/user_guide/prometheus/index.html index ddb1dd77275..2829c98c176 100644 --- a/docs/next/user_guide/prometheus/index.html +++ b/docs/next/user_guide/prometheus/index.html @@ -4,7 +4,7 @@ Prometheus and Grafana | Apache YuniKorn - + diff --git a/docs/next/user_guide/queue_config/index.html b/docs/next/user_guide/queue_config/index.html index eb41f6ced99..26c949ba722 100644 --- a/docs/next/user_guide/queue_config/index.html +++ b/docs/next/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/next/user_guide/resource_quota_management/index.html b/docs/next/user_guide/resource_quota_management/index.html index 84da9352be6..32ffa132db2 100644 --- a/docs/next/user_guide/resource_quota_management/index.html +++ b/docs/next/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/next/user_guide/service_config/index.html b/docs/next/user_guide/service_config/index.html index 0400f1359a0..c684199d66c 100644 --- a/docs/next/user_guide/service_config/index.html +++ b/docs/next/user_guide/service_config/index.html @@ -4,7 +4,7 @@ Service Configuration | Apache YuniKorn - + diff --git a/docs/next/user_guide/sorting_policies/index.html b/docs/next/user_guide/sorting_policies/index.html index 96f259b0a71..8d53b03b4bd 100644 --- a/docs/next/user_guide/sorting_policies/index.html +++ b/docs/next/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/next/user_guide/troubleshooting/index.html b/docs/next/user_guide/troubleshooting/index.html index 3b723fca380..45c17a3be53 100644 --- a/docs/next/user_guide/troubleshooting/index.html +++ b/docs/next/user_guide/troubleshooting/index.html @@ -4,7 +4,7 @@ Troubleshooting | Apache YuniKorn - + diff --git a/docs/next/user_guide/use_cases/index.html b/docs/next/user_guide/use_cases/index.html index 0e9b1dea8ca..6cf89b87b36 100644 --- a/docs/next/user_guide/use_cases/index.html +++ b/docs/next/user_guide/use_cases/index.html @@ -4,7 +4,7 @@ Use Cases | Apache YuniKorn - + diff --git a/docs/next/user_guide/usergroup_resolution/index.html b/docs/next/user_guide/usergroup_resolution/index.html index 3af60756b4d..f33c380312d 100644 --- a/docs/next/user_guide/usergroup_resolution/index.html +++ b/docs/next/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_flink/index.html b/docs/next/user_guide/workloads/run_flink/index.html index e56c9792b02..62b3087ab56 100644 --- a/docs/next/user_guide/workloads/run_flink/index.html +++ b/docs/next/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_mpi/index.html b/docs/next/user_guide/workloads/run_mpi/index.html index 4bb22992c8f..10454061567 100644 --- a/docs/next/user_guide/workloads/run_mpi/index.html +++ b/docs/next/user_guide/workloads/run_mpi/index.html @@ -4,7 +4,7 @@ Run MPI Jobs | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_nvidia/index.html b/docs/next/user_guide/workloads/run_nvidia/index.html index 59211a39756..9ec56cf04d5 100644 --- a/docs/next/user_guide/workloads/run_nvidia/index.html +++ b/docs/next/user_guide/workloads/run_nvidia/index.html @@ -4,7 +4,7 @@ Run NVIDIA GPU Jobs | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_ray_cluster/index.html b/docs/next/user_guide/workloads/run_ray_cluster/index.html index c9246602cd5..0060f2aa9c3 100644 --- a/docs/next/user_guide/workloads/run_ray_cluster/index.html +++ b/docs/next/user_guide/workloads/run_ray_cluster/index.html @@ -4,7 +4,7 @@ Run RayCluster | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_ray_job/index.html b/docs/next/user_guide/workloads/run_ray_job/index.html index ab97f40f1e0..c80a579fce3 100644 --- a/docs/next/user_guide/workloads/run_ray_job/index.html +++ b/docs/next/user_guide/workloads/run_ray_job/index.html @@ -4,7 +4,7 @@ Run RayJob | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_ray_service/index.html b/docs/next/user_guide/workloads/run_ray_service/index.html index beaffab3811..75942a73d43 100644 --- a/docs/next/user_guide/workloads/run_ray_service/index.html +++ b/docs/next/user_guide/workloads/run_ray_service/index.html @@ -4,7 +4,7 @@ Run RayService | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_spark/index.html b/docs/next/user_guide/workloads/run_spark/index.html index 5e8937d0029..18703efd1b8 100644 --- a/docs/next/user_guide/workloads/run_spark/index.html +++ b/docs/next/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/run_tf/index.html b/docs/next/user_guide/workloads/run_tf/index.html index 0ec947b4ce0..b09adeaf995 100644 --- a/docs/next/user_guide/workloads/run_tf/index.html +++ b/docs/next/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/next/user_guide/workloads/workload_overview/index.html b/docs/next/user_guide/workloads/workload_overview/index.html index 52f8f518f19..d0d4b556fc1 100644 --- a/docs/next/user_guide/workloads/workload_overview/index.html +++ b/docs/next/user_guide/workloads/workload_overview/index.html @@ -4,7 +4,7 @@ Overview | Apache YuniKorn - + diff --git a/docs/performance/evaluate_perf_function_with_kubemark/index.html b/docs/performance/evaluate_perf_function_with_kubemark/index.html index 882c55691f9..34b899da320 100644 --- a/docs/performance/evaluate_perf_function_with_kubemark/index.html +++ b/docs/performance/evaluate_perf_function_with_kubemark/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with Kubemark | Apache YuniKorn - + diff --git a/docs/performance/evaluate_perf_function_with_kwok/index.html b/docs/performance/evaluate_perf_function_with_kwok/index.html index 7117acb5bc0..d993217b146 100644 --- a/docs/performance/evaluate_perf_function_with_kwok/index.html +++ b/docs/performance/evaluate_perf_function_with_kwok/index.html @@ -4,7 +4,7 @@ Evaluate YuniKorn Performance with KWOK | Apache YuniKorn - + diff --git a/docs/performance/metrics/index.html b/docs/performance/metrics/index.html index d6e0ea5f4d6..8fc948e94dc 100644 --- a/docs/performance/metrics/index.html +++ b/docs/performance/metrics/index.html @@ -4,7 +4,7 @@ Scheduler Metrics | Apache YuniKorn - + diff --git a/docs/performance/performance_tutorial/index.html b/docs/performance/performance_tutorial/index.html index 2ec39de4574..d1f4e2b555f 100644 --- a/docs/performance/performance_tutorial/index.html +++ b/docs/performance/performance_tutorial/index.html @@ -4,7 +4,7 @@ Benchmarking Tutorial | Apache YuniKorn - + diff --git a/docs/performance/profiling/index.html b/docs/performance/profiling/index.html index 7012e7baae7..1d609a0bc12 100644 --- a/docs/performance/profiling/index.html +++ b/docs/performance/profiling/index.html @@ -4,7 +4,7 @@ Profiling | Apache YuniKorn - + diff --git a/docs/user_guide/acls/index.html b/docs/user_guide/acls/index.html index 4c51b43579a..ca7b7938b01 100644 --- a/docs/user_guide/acls/index.html +++ b/docs/user_guide/acls/index.html @@ -4,7 +4,7 @@ ACLs | Apache YuniKorn - + diff --git a/docs/user_guide/deployment_modes/index.html b/docs/user_guide/deployment_modes/index.html index e68bab00e5f..816e1759af9 100644 --- a/docs/user_guide/deployment_modes/index.html +++ b/docs/user_guide/deployment_modes/index.html @@ -4,7 +4,7 @@ Deployment Modes | Apache YuniKorn - + diff --git a/docs/user_guide/event_system/index.html b/docs/user_guide/event_system/index.html index 5cda6264134..d9f931d4914 100644 --- a/docs/user_guide/event_system/index.html +++ b/docs/user_guide/event_system/index.html @@ -4,7 +4,7 @@ Event System | Apache YuniKorn - + diff --git a/docs/user_guide/gang_scheduling/index.html b/docs/user_guide/gang_scheduling/index.html index 59f78eb8f18..0d9be32e98f 100644 --- a/docs/user_guide/gang_scheduling/index.html +++ b/docs/user_guide/gang_scheduling/index.html @@ -4,7 +4,7 @@ Gang Scheduling | Apache YuniKorn - + diff --git a/docs/user_guide/labels_and_annotations_in_yunikorn/index.html b/docs/user_guide/labels_and_annotations_in_yunikorn/index.html index fafa85c9590..28837115e40 100644 --- a/docs/user_guide/labels_and_annotations_in_yunikorn/index.html +++ b/docs/user_guide/labels_and_annotations_in_yunikorn/index.html @@ -4,7 +4,7 @@ Labels and Annotations in YuniKorn | Apache YuniKorn - + diff --git a/docs/user_guide/placement_rules/index.html b/docs/user_guide/placement_rules/index.html index a5fdc8a2eac..1953fcc499b 100644 --- a/docs/user_guide/placement_rules/index.html +++ b/docs/user_guide/placement_rules/index.html @@ -4,7 +4,7 @@ App Placement Rules | Apache YuniKorn - + diff --git a/docs/user_guide/preemption_cases/index.html b/docs/user_guide/preemption_cases/index.html index 2be57b3a821..ddacae4a90b 100644 --- a/docs/user_guide/preemption_cases/index.html +++ b/docs/user_guide/preemption_cases/index.html @@ -4,7 +4,7 @@ Preemption | Apache YuniKorn - + diff --git a/docs/user_guide/priorities/index.html b/docs/user_guide/priorities/index.html index f4163f52ee0..e3c77e711ae 100644 --- a/docs/user_guide/priorities/index.html +++ b/docs/user_guide/priorities/index.html @@ -4,7 +4,7 @@ App & Queue Priorities | Apache YuniKorn - + diff --git a/docs/user_guide/prometheus/index.html b/docs/user_guide/prometheus/index.html index 36037276da1..e8e2d296da5 100644 --- a/docs/user_guide/prometheus/index.html +++ b/docs/user_guide/prometheus/index.html @@ -4,7 +4,7 @@ Prometheus and Grafana | Apache YuniKorn - + diff --git a/docs/user_guide/queue_config/index.html b/docs/user_guide/queue_config/index.html index 29ccd470c7a..b5219f3efba 100644 --- a/docs/user_guide/queue_config/index.html +++ b/docs/user_guide/queue_config/index.html @@ -4,7 +4,7 @@ Partition and Queue Configuration | Apache YuniKorn - + diff --git a/docs/user_guide/resource_quota_management/index.html b/docs/user_guide/resource_quota_management/index.html index 26d1553b0a8..43b114de853 100644 --- a/docs/user_guide/resource_quota_management/index.html +++ b/docs/user_guide/resource_quota_management/index.html @@ -4,7 +4,7 @@ Resource Quota Management | Apache YuniKorn - + diff --git a/docs/user_guide/service_config/index.html b/docs/user_guide/service_config/index.html index 7d1e31c8684..763e490d464 100644 --- a/docs/user_guide/service_config/index.html +++ b/docs/user_guide/service_config/index.html @@ -4,7 +4,7 @@ Service Configuration | Apache YuniKorn - + diff --git a/docs/user_guide/sorting_policies/index.html b/docs/user_guide/sorting_policies/index.html index 9e5aad78a2b..8b308b69dc0 100644 --- a/docs/user_guide/sorting_policies/index.html +++ b/docs/user_guide/sorting_policies/index.html @@ -4,7 +4,7 @@ Sorting Policies | Apache YuniKorn - + diff --git a/docs/user_guide/troubleshooting/index.html b/docs/user_guide/troubleshooting/index.html index 5088718dbb4..35248d6449b 100644 --- a/docs/user_guide/troubleshooting/index.html +++ b/docs/user_guide/troubleshooting/index.html @@ -4,7 +4,7 @@ Troubleshooting | Apache YuniKorn - + diff --git a/docs/user_guide/use_cases/index.html b/docs/user_guide/use_cases/index.html index 868b465df07..202ff6fa525 100644 --- a/docs/user_guide/use_cases/index.html +++ b/docs/user_guide/use_cases/index.html @@ -4,7 +4,7 @@ Use Cases | Apache YuniKorn - + diff --git a/docs/user_guide/usergroup_resolution/index.html b/docs/user_guide/usergroup_resolution/index.html index eee678f265f..6f91cfa0d6a 100644 --- a/docs/user_guide/usergroup_resolution/index.html +++ b/docs/user_guide/usergroup_resolution/index.html @@ -4,7 +4,7 @@ User & Group Resolution | Apache YuniKorn - + diff --git a/docs/user_guide/workloads/run_flink/index.html b/docs/user_guide/workloads/run_flink/index.html index decc087ef1b..3f67c07f656 100644 --- a/docs/user_guide/workloads/run_flink/index.html +++ b/docs/user_guide/workloads/run_flink/index.html @@ -4,7 +4,7 @@ Run Flink Jobs | Apache YuniKorn - + diff --git a/docs/user_guide/workloads/run_mpi/index.html b/docs/user_guide/workloads/run_mpi/index.html index 291ebe7ad31..ae3acda5baf 100644 --- a/docs/user_guide/workloads/run_mpi/index.html +++ b/docs/user_guide/workloads/run_mpi/index.html @@ -4,7 +4,7 @@ Run MPI Jobs | Apache YuniKorn - + diff --git a/docs/user_guide/workloads/run_nvidia/index.html b/docs/user_guide/workloads/run_nvidia/index.html index baba39e83f0..b5562869d8f 100644 --- a/docs/user_guide/workloads/run_nvidia/index.html +++ b/docs/user_guide/workloads/run_nvidia/index.html @@ -4,7 +4,7 @@ Run NVIDIA GPU Jobs | Apache YuniKorn - + diff --git a/docs/user_guide/workloads/run_spark/index.html b/docs/user_guide/workloads/run_spark/index.html index d5f27985b8a..9c61422a870 100644 --- a/docs/user_guide/workloads/run_spark/index.html +++ b/docs/user_guide/workloads/run_spark/index.html @@ -4,7 +4,7 @@ Run Spark Jobs | Apache YuniKorn - + diff --git a/docs/user_guide/workloads/run_tf/index.html b/docs/user_guide/workloads/run_tf/index.html index 6ea1cbbe0aa..f03db8c770d 100644 --- a/docs/user_guide/workloads/run_tf/index.html +++ b/docs/user_guide/workloads/run_tf/index.html @@ -4,7 +4,7 @@ Run TensorFlow Jobs | Apache YuniKorn - + diff --git a/docs/user_guide/workloads/workload_overview/index.html b/docs/user_guide/workloads/workload_overview/index.html index 21dab915199..14c7ffd5452 100644 --- a/docs/user_guide/workloads/workload_overview/index.html +++ b/docs/user_guide/workloads/workload_overview/index.html @@ -4,7 +4,7 @@ Overview | Apache YuniKorn - + diff --git a/index.html b/index.html index 1d1a2635e52..b94365f8097 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ Welcome to Apache YuniKorn | Apache YuniKorn - + diff --git a/release-announce/0.10.0/index.html b/release-announce/0.10.0/index.html index e60bc81b1a1..0020017b816 100644 --- a/release-announce/0.10.0/index.html +++ b/release-announce/0.10.0/index.html @@ -4,7 +4,7 @@ Release Announcement v0.10.0 | Apache YuniKorn - + diff --git a/release-announce/0.11.0/index.html b/release-announce/0.11.0/index.html index d12dd5932a0..3f37ba672aa 100644 --- a/release-announce/0.11.0/index.html +++ b/release-announce/0.11.0/index.html @@ -4,7 +4,7 @@ Release Announcement v0.11.0 | Apache YuniKorn - + diff --git a/release-announce/0.12.1/index.html b/release-announce/0.12.1/index.html index 0dc7c6c0c01..1b0b3479070 100644 --- a/release-announce/0.12.1/index.html +++ b/release-announce/0.12.1/index.html @@ -4,7 +4,7 @@ Release Announcement v0.12.1 | Apache YuniKorn - + diff --git a/release-announce/0.12.2/index.html b/release-announce/0.12.2/index.html index d15cba119f7..83250ef81bb 100644 --- a/release-announce/0.12.2/index.html +++ b/release-announce/0.12.2/index.html @@ -4,7 +4,7 @@ Release Announcement v0.12.2 | Apache YuniKorn - + diff --git a/release-announce/0.8.0/index.html b/release-announce/0.8.0/index.html index c4d53400510..1898b50a81c 100644 --- a/release-announce/0.8.0/index.html +++ b/release-announce/0.8.0/index.html @@ -4,7 +4,7 @@ Release Announcement v0.8.0 | Apache YuniKorn - + diff --git a/release-announce/0.9.0/index.html b/release-announce/0.9.0/index.html index 542384b973a..b0a5580c29c 100644 --- a/release-announce/0.9.0/index.html +++ b/release-announce/0.9.0/index.html @@ -4,7 +4,7 @@ Release Announcement v0.9.0 | Apache YuniKorn - + diff --git a/release-announce/1.0.0/index.html b/release-announce/1.0.0/index.html index 77ee6e687cd..b4ebc72a0c0 100644 --- a/release-announce/1.0.0/index.html +++ b/release-announce/1.0.0/index.html @@ -4,7 +4,7 @@ Release Announcement v1.0.0 | Apache YuniKorn - + diff --git a/release-announce/1.1.0/index.html b/release-announce/1.1.0/index.html index a91572969ac..2b8ac2377b5 100644 --- a/release-announce/1.1.0/index.html +++ b/release-announce/1.1.0/index.html @@ -4,7 +4,7 @@ Release Announcement v1.1.0 | Apache YuniKorn - + diff --git a/release-announce/1.2.0/index.html b/release-announce/1.2.0/index.html index 9a216d4ce2c..12e92a3e1ee 100644 --- a/release-announce/1.2.0/index.html +++ b/release-announce/1.2.0/index.html @@ -4,7 +4,7 @@ Release Announcement v1.2.0 | Apache YuniKorn - + diff --git a/release-announce/1.3.0/index.html b/release-announce/1.3.0/index.html index 037cbb4ceb1..58e07aae1c2 100644 --- a/release-announce/1.3.0/index.html +++ b/release-announce/1.3.0/index.html @@ -4,7 +4,7 @@ Release Announcement v1.3.0 | Apache YuniKorn - + diff --git a/release-announce/1.4.0/index.html b/release-announce/1.4.0/index.html index 82350f3eb6e..4938a074038 100644 --- a/release-announce/1.4.0/index.html +++ b/release-announce/1.4.0/index.html @@ -4,7 +4,7 @@ Release Announcement v1.4.0 | Apache YuniKorn - + diff --git a/release-announce/1.5.0/index.html b/release-announce/1.5.0/index.html index bcef3d62eb6..7a454d241cd 100644 --- a/release-announce/1.5.0/index.html +++ b/release-announce/1.5.0/index.html @@ -4,7 +4,7 @@ Release Announcement v1.5.0 | Apache YuniKorn - + diff --git a/release-announce/1.5.1/index.html b/release-announce/1.5.1/index.html index 65f3634fe2f..f231ae44aa3 100644 --- a/release-announce/1.5.1/index.html +++ b/release-announce/1.5.1/index.html @@ -4,7 +4,7 @@ Release Announcement v1.5.1 | Apache YuniKorn - + diff --git a/release-announce/index.html b/release-announce/index.html index 75f233317b5..cde165b8a63 100644 --- a/release-announce/index.html +++ b/release-announce/index.html @@ -4,7 +4,7 @@ Apache YuniKorn - + diff --git a/search/index.html b/search/index.html index ad6d4ba9ef8..b64e36a10b3 100644 --- a/search/index.html +++ b/search/index.html @@ -4,7 +4,7 @@ Search the documentation | Apache YuniKorn - +