# kubesim **Repository Path**: mirrors_volcano-sh/kubesim ## Basic Information - **Project Name**: kubesim - **Description**: A simulator of Kuberntes for batch and service workload. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2025-10-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # KubeSim A simulator of Kubernetes for batch and offline workload. Kubesim is based on kubemark on kubernetes `release-1.18`, tag `v1.18.6`, commit `dff82dc0de47299ab66c83c626e08b245ab19037` ## Quick start 1. create `kubesim` namespace ``` kubectl create ns kubesim ``` 2. create comfig map `node-configmap` ``` kubectl create configmap node-configmap -n kubesim --from-literal=content.type="test-cluster" ``` 3. create secret `kubeconfig` ``` kubectl create secret generic kubeconfig --type=Opaque --namespace=kubesim --from-file=kubelet.kubeconfig={{kubeconfig_file_path}} --from-file=kubeproxy.kubeconfig={{kubeconfig_file_path}} ``` 4. deploy kubesim ``` kubectl apply -f ./example/kubesim-cm.yaml kubectl apply -f ./example/kubesim-rc.yaml ```