├── .github └── workflows │ └── document.yml ├── .gitignore ├── .gitlab-ci.yml ├── CNAME ├── Dockerfile ├── README.md └── documentation ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .stylelintignore ├── .stylelintrc ├── babel.config.js ├── blog ├── authors.yml ├── kubernetes-audit.mdx ├── kubernetes-exec.css ├── kubernetes-exec.mdx └── kubernetes-the-hard-way.mdx ├── docs └── tech-docs │ ├── empty.mdx │ ├── etcd │ ├── about.mdx │ ├── architecture.mdx │ ├── certificates │ │ ├── center-authority │ │ │ ├── etcdCA │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ └── main.mdx │ │ ├── certificateAuthorityCerts.mdx │ │ ├── components │ │ │ ├── etcd │ │ │ │ ├── etcdClient │ │ │ │ │ ├── checks │ │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ │ ├── kubeadm.mdx │ │ │ │ │ ├── main.mdx │ │ │ │ │ └── openssl.mdx │ │ │ │ ├── etcdPeer │ │ │ │ │ ├── checks │ │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ │ ├── kubeadm.mdx │ │ │ │ │ ├── main.mdx │ │ │ │ │ └── openssl.mdx │ │ │ │ ├── etcdServer │ │ │ │ │ ├── checks │ │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ │ ├── kubeadm.mdx │ │ │ │ │ ├── main.mdx │ │ │ │ │ └── openssl.mdx │ │ │ │ └── main.mdx │ │ │ └── main.mdx │ │ └── componentsCerts.mdx │ ├── components │ │ ├── allSetup.mdx │ │ ├── allSetupComponent.mdx │ │ ├── etcd │ │ │ ├── about.mdx │ │ │ ├── checkBIN.mdx │ │ │ ├── checks │ │ │ │ ├── statusBinFiles.mdx │ │ │ │ └── statusBinVersion.mdx │ │ │ ├── componentReadyComponent.mdx │ │ │ ├── kubeadmInit.mdx │ │ │ ├── kubeadmJoin.mdx │ │ │ ├── lifecycleDownloadComponent.mdx │ │ │ ├── lifecycleDownloadStatus.mdx │ │ │ ├── payload │ │ │ │ └── downloadBIN.mdx │ │ │ ├── removeMembers.mdx │ │ │ ├── scripts │ │ │ │ └── download-script.sh.ts │ │ │ ├── setupInit.mdx │ │ │ ├── setupInitComponent.mdx │ │ │ ├── setupJoin.mdx │ │ │ ├── setupJoinComponent.mdx │ │ │ ├── staticPodInitComponent.mdx │ │ │ └── staticPodJoinComponent.mdx │ │ └── etcdbrctl │ │ │ ├── about.mdx │ │ │ ├── backupScriptBash.mdx │ │ │ ├── backupScriptCloudInit.mdx │ │ │ ├── checkInstall.mdx │ │ │ ├── checks │ │ │ ├── statusHelmInstall.mdx │ │ │ └── statusStaticPodInstall.mdx │ │ │ ├── lifecycleDownloadComponent.mdx │ │ │ ├── payload │ │ │ ├── helmInstall.mdx │ │ │ └── staticPodInstall.mdx │ │ │ ├── setup.mdx │ │ │ └── setupComponent.mdx │ ├── setup-environments │ │ ├── base-os │ │ │ ├── allBaseOSSetup.mdx │ │ │ ├── allBaseOSSetupComponent.mdx │ │ │ └── baseOSSetupComponent.mdx │ │ └── osSetup.mdx │ ├── troubleshooting │ │ ├── alias.mdx │ │ ├── backups.mdx │ │ ├── check-box.mdx │ │ ├── commands.mdx │ │ ├── compaction.mdx │ │ ├── defrag.mdx │ │ ├── restore.mdx │ │ ├── restore │ │ │ ├── blocks │ │ │ │ ├── CodeAndInputCrushedNodeK8s.tsx │ │ │ │ ├── CodeAndInputCrushedNodeKubeApi.tsx │ │ │ │ ├── CodeAndInputSingleNodeK8s.tsx │ │ │ │ ├── CodeAndInputSingleNodeKubeApi.tsx │ │ │ │ ├── CodeAndInputThreeNodeK8s.tsx │ │ │ │ ├── CodeAndInputThreeNodeKubeApi.tsx │ │ │ │ ├── CodeAndInputThreeNodeKubeApiGardener.tsx │ │ │ │ └── index.ts │ │ │ ├── crushedNodeK8s.mdx │ │ │ ├── crushedNodeKubeApi.mdx │ │ │ ├── singleNodeK8s.mdx │ │ │ ├── singleNodeKubeApi.mdx │ │ │ ├── threeNodeK8s.mdx │ │ │ ├── threeNodeK8sNEW.mdx │ │ │ ├── threeNodeKubeApi.mdx │ │ │ └── threeNodeKubeApiGardener.mdx │ │ ├── restoreEtcdK8s.mdx │ │ ├── restoreEtcdK8sEtcdbrctl.mdx │ │ └── restoreEtcdKupeApi.mdx │ └── tuning.mdx │ ├── kubernetes-network │ ├── base-load-balancer-principal.mdx │ ├── base-pod-underlay-principal.mdx │ ├── metallb │ │ ├── base-load-balancer-metallb.mdx │ │ ├── metallb-ip-address-pool.mdx │ │ └── metallb-l2-advertisement.mdx │ └── resourceService.mdx │ └── kubernetes │ ├── about.mdx │ ├── additional-setup │ ├── marking │ │ ├── allMarking.mdx │ │ ├── allMarkingComponent.mdx │ │ ├── markingInitComponent.mdx │ │ └── markingJoinComponent.mdx │ ├── upload-ca │ │ ├── allUploadCA.mdx │ │ ├── allUploadCAComponent.mdx │ │ └── uploadCAComponent.mdx │ ├── upload-configs │ │ ├── allUploadConfigs.mdx │ │ ├── allUploadConfigsComponent.mdx │ │ ├── uploadConfigsInitComponent.mdx │ │ └── uploadConfigsJoinComponent.mdx │ └── upload-rbac │ │ ├── allUploadRbac.mdx │ │ ├── allUploadRbacComponent.mdx │ │ └── rbacComponent.mdx │ ├── certificates │ ├── aboutAllComponent.mdx │ ├── allCertificates.mdx │ ├── allCertificatesComponent.mdx │ ├── allKubeconfigsComponent.mdx │ ├── center-authority │ │ ├── allCAComponent.mdx │ │ ├── allСA.mdx │ │ ├── downloadCA.mdx │ │ ├── downloadCAKubeadmComponent.mdx │ │ ├── downloadCAOpensslComponent.mdx │ │ ├── frontProxyCA │ │ │ ├── kubeadm.mdx │ │ │ ├── main.mdx │ │ │ └── openssl.mdx │ │ ├── init.mdx │ │ ├── join.mdx │ │ └── kubernetesCA │ │ │ ├── kubeadm.mdx │ │ │ ├── main.mdx │ │ │ └── openssl.mdx │ ├── components │ │ ├── _kubeadm │ │ │ ├── initAllCertsGen.mdx │ │ │ ├── initAllKubeconfigGen.mdx │ │ │ ├── joinAllCertsGen.mdx │ │ │ └── joinAllKubeconfigGen.mdx │ │ ├── _openssl │ │ │ ├── allAppCerts.mdx │ │ │ └── allAppKubeconfigs.mdx │ │ ├── admin │ │ │ ├── adminClient │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── kubeconfig.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ ├── main.mdx │ │ │ └── superAdminClient │ │ │ │ ├── checks │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── kubeconfig.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ ├── allCertificates.mdx │ │ ├── allCertificatesAppsInitComponent.mdx │ │ ├── allCertificatesAppsJoinComponent.mdx │ │ ├── allCertificatesComponent.mdx │ │ ├── allKubeconfigs.mdx │ │ ├── allKubeconfigsAppsInitComponent.mdx │ │ ├── allKubeconfigsAppsJoinComponent.mdx │ │ ├── allKubeconfigsComponent.mdx │ │ ├── initCerts.mdx │ │ ├── initKubeconfigs.mdx │ │ ├── joinCerts.mdx │ │ ├── kubeAPI │ │ │ ├── etcdClient │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ ├── frontProxyClient │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ ├── kubeAPIServer │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ ├── kubeletClient │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ └── main.mdx │ │ ├── kubeControllerManager │ │ │ ├── kubeAPIClient │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── kubeconfig.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ ├── kubeControllerManagerServer │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ └── main.mdx │ │ ├── kubeScheduler │ │ │ ├── kubeAPIClient │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── kubeadm.mdx │ │ │ │ ├── kubeconfig.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ ├── kubeSchedulerServer │ │ │ │ ├── checks │ │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ │ └── statusOpenssl.mdx │ │ │ │ ├── main.mdx │ │ │ │ └── openssl.mdx │ │ │ └── main.mdx │ │ └── kubelet │ │ │ ├── kubeAPIClient │ │ │ ├── checks │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ └── statusOpenssl.mdx │ │ │ ├── kubeadm.mdx │ │ │ ├── kubeconfig.mdx │ │ │ ├── main.mdx │ │ │ └── openssl.mdx │ │ │ ├── kubeletServer │ │ │ ├── checks │ │ │ │ ├── statusKubeadm.mdx │ │ │ │ └── statusOpenssl.mdx │ │ │ ├── kubeadm.mdx │ │ │ ├── main.mdx │ │ │ └── openssl.mdx │ │ │ └── main.mdx │ ├── examination │ │ ├── allExamination.mdx │ │ ├── allExaminationComponent.mdx │ │ ├── examinationComponent.mdx │ │ ├── examinationKubeadmComponent.mdx │ │ └── examinationOpensslComponent.mdx │ └── service-account │ │ ├── allServiceAccount.mdx │ │ ├── allServiceAccountComponent.mdx │ │ ├── serviceAccountComponent.mdx │ │ ├── serviceAccountHardWayComponent.mdx │ │ └── serviceAccountKubeadmComponent.mdx │ ├── components │ ├── _kubeadm │ │ ├── initAllStaticPodsGen.mdx │ │ └── joinAllStaticPodsGen.mdx │ ├── allComponentsReady.mdx │ ├── allComponentsReadyComponent.mdx │ ├── allInstall.mdx │ ├── allInstallComponent.mdx │ ├── allSetup.mdx │ ├── allSetupComponent.mdx │ ├── allStaticPods.mdx │ ├── allStaticPodsCPComponent.mdx │ ├── allStaticPodsCPInitComponent.mdx │ ├── allStaticPodsCPJoinComponent.mdx │ ├── allStaticPodsCPPhasesComponent.mdx │ ├── allStaticPodsETCDComponent.mdx │ ├── componentsAbout.mdx │ ├── componentsReadyComponent.mdx │ ├── componentsReadyInitComponent.mdx │ ├── componentsReadyJoinComponent.mdx │ ├── containerd │ │ ├── about.mdx │ │ ├── checkBIN.mdx │ │ ├── checkComponent.mdx │ │ ├── checks │ │ │ ├── statusBinFiles.mdx │ │ │ ├── statusBinVersion.mdx │ │ │ ├── statusConfigFiles.mdx │ │ │ └── statusSystemdUnit.mdx │ │ ├── componentReadyComponent.mdx │ │ ├── lifecycleDownload.mdx │ │ ├── lifecycleDownloadComponent.mdx │ │ ├── lifecycleDownloadStatus.mdx │ │ ├── lifecycleSettings.mdx │ │ ├── lifecycleSettingsComponent.mdx │ │ ├── lifecycleSettingsStatus.mdx │ │ ├── payload │ │ │ ├── configFiles.mdx │ │ │ ├── dir.mdx │ │ │ ├── downloadBIN.mdx │ │ │ ├── setupSystemdUnit.mdx │ │ │ └── startSystemdUnit.mdx │ │ └── scripts │ │ │ └── download-script.sh.ts │ ├── controllerManager │ │ ├── about.mdx │ │ ├── kubeadm.mdx │ │ ├── setup.mdx │ │ ├── setupInitComponent.mdx │ │ ├── setupJoinComponent.mdx │ │ └── staticPod.mdx │ ├── crictl │ │ ├── about.mdx │ │ ├── checkBIN.mdx │ │ ├── checkComponent.mdx │ │ ├── checks │ │ │ ├── status.mdx │ │ │ ├── statusBinFiles.mdx │ │ │ ├── statusBinVersion.mdx │ │ │ └── statusConfigFiles.mdx │ │ ├── componentReadyComponent.mdx │ │ ├── lifecycleDownload.mdx │ │ ├── lifecycleDownloadComponent.mdx │ │ ├── lifecycleDownloadStatus.mdx │ │ ├── lifecycleSettings.mdx │ │ ├── lifecycleSettingsComponent.mdx │ │ ├── lifecycleSettingsStatus.mdx │ │ ├── payload │ │ │ ├── configFiles.mdx │ │ │ └── downloadBIN.mdx │ │ └── scripts │ │ │ └── download-script.sh.ts │ ├── kubeAPI │ │ ├── about.mdx │ │ ├── kubeadm.mdx │ │ ├── setup.mdx │ │ ├── setupInitComponent.mdx │ │ ├── setupJoinComponent.mdx │ │ └── staticPod.mdx │ ├── kubeadm │ │ ├── about.mdx │ │ ├── checkBIN.mdx │ │ ├── checkComponent.mdx │ │ ├── checks │ │ │ ├── status.mdx │ │ │ ├── statusBinFiles.mdx │ │ │ ├── statusBinVersion.mdx │ │ │ └── statusConfigFiles.mdx │ │ ├── componentReadyComponent.mdx │ │ ├── configs │ │ │ ├── initConfig.mdx │ │ │ └── joinConfig.mdx │ │ ├── lifecycleDownload.mdx │ │ ├── lifecycleDownloadComponent.mdx │ │ ├── lifecycleDownloadStatus.mdx │ │ ├── lifecycleSettings.mdx │ │ ├── lifecycleSettingsComponent.mdx │ │ ├── lifecycleSettingsStatus.mdx │ │ ├── payload │ │ │ ├── configFiles.mdx │ │ │ ├── dir.mdx │ │ │ └── downloadBIN.mdx │ │ ├── phases │ │ │ ├── phaseKubeadm.mdx │ │ │ ├── phaseKubeadmInit.mdx │ │ │ └── phaseKubeadmJoin.mdx │ │ └── scripts │ │ │ └── download-script.sh.ts │ ├── kubectl │ │ ├── about.mdx │ │ ├── checkBIN.mdx │ │ ├── checks │ │ │ ├── status.mdx │ │ │ ├── statusBinFiles.mdx │ │ │ └── statusBinVersion.mdx │ │ ├── componentReadyComponent.mdx │ │ ├── lifecycleDownload.mdx │ │ ├── lifecycleDownloadComponent.mdx │ │ ├── lifecycleDownloadStatus.mdx │ │ ├── payload │ │ │ └── downloadBIN.mdx │ │ └── scripts │ │ │ └── download-script.sh.ts │ ├── kubelet │ │ ├── about.mdx │ │ ├── allServiceStart.mdx │ │ ├── allServiceStartComponent.mdx │ │ ├── auditPolicy.mdx │ │ ├── checkBIN.mdx │ │ ├── checkComponent.mdx │ │ ├── checks │ │ │ ├── statusBinFiles.mdx │ │ │ ├── statusBinVersion.mdx │ │ │ ├── statusConfigFiles.mdx │ │ │ ├── statusSystemdUnitEnabled.mdx │ │ │ └── statusSystemdUnitRunning.mdx │ │ ├── kubeadm │ │ │ ├── systemdUnitStartInit.mdx │ │ │ └── systemdUnitStartJoin.mdx │ │ ├── lifecycleDownload.mdx │ │ ├── lifecycleDownloadComponent.mdx │ │ ├── lifecycleDownloadStatus.mdx │ │ ├── lifecycleSettings.mdx │ │ ├── lifecycleSettingsComponent.mdx │ │ ├── lifecycleSettingsStatus.mdx │ │ ├── payload │ │ │ ├── configFiles.mdx │ │ │ ├── configFilesDefault.mdx │ │ │ ├── dir.mdx │ │ │ ├── downloadBIN.mdx │ │ │ ├── setupSystemdUnit.mdx │ │ │ └── startSystemdUnit.mdx │ │ ├── scripts │ │ │ └── download-script.sh.ts │ │ └── systemdUnit │ │ │ ├── systemdUnitEnable.mdx │ │ │ └── systemdUnitStart.mdx │ ├── runc │ │ ├── about.mdx │ │ ├── checkBIN.mdx │ │ ├── checks │ │ │ ├── statusBinFiles.mdx │ │ │ └── statusBinVersion.mdx │ │ ├── componentReadyComponent.mdx │ │ ├── lifecycleDownload.mdx │ │ ├── lifecycleDownloadComponent.mdx │ │ ├── lifecycleDownloadStatus.mdx │ │ ├── payload │ │ │ └── downloadBIN.mdx │ │ └── scripts │ │ │ └── download-script.sh.ts │ └── scheduler │ │ ├── about.mdx │ │ ├── kubeadm.mdx │ │ ├── setup.mdx │ │ ├── setupInitComponent.mdx │ │ ├── setupJoinComponent.mdx │ │ └── staticPod.mdx │ ├── flowcharts │ ├── arch.mdx │ ├── components.mdx │ ├── schemaCerts.mdx │ └── topologyInfra.mdx │ ├── introduction.mdx │ ├── kubeadmJoin.mdx │ ├── kubernetesInit.mdx │ ├── kubernetesInitManifests.mdx │ ├── kubernetesJoin.mdx │ ├── requirements │ ├── computeResourceManagement.mdx │ ├── containerization.mdx │ ├── dataStoreManagement.mdx │ ├── integrations.mdx │ ├── integrationsReq.mdx │ ├── logging.mdx │ ├── monitoring.mdx │ ├── network.mdx │ ├── orkestrations.mdx │ ├── portal.mdx │ ├── quotarResourceManagement.mdx │ └── security.mdx │ ├── setup-environments │ ├── allMasterTabs.mdx │ ├── base-os │ │ ├── allBaseOSSetup.mdx │ │ ├── allBaseOSSetupComponent.mdx │ │ ├── baseOSSetup.mdx │ │ └── baseOSSetupComponent.mdx │ ├── initMaster.mdx │ ├── modprobe │ │ ├── allModprobe.mdx │ │ ├── allModprobeComponent.mdx │ │ └── coreModulesComponent.mdx │ ├── osSetup.mdx │ ├── secondaryMasters.mdx │ └── sysctls │ │ ├── allSysctls.mdx │ │ ├── allSysctlsComponent.mdx │ │ └── sysctlsComponent.mdx │ └── statusCluster.mdx ├── docusaurus.config.ts ├── package.json ├── plugins ├── medusa.js └── webpack.js ├── sidebars.ts ├── src ├── api │ └── getRepoInfo.tsx ├── components │ ├── AaaBug │ │ ├── AaaBug.tsx │ │ ├── index.ts │ │ └── styles.module.css │ ├── GithubLink │ │ ├── GithubLink.tsx │ │ ├── GithubLinkMob.tsx │ │ └── index.js │ ├── Landing │ │ ├── index.ts │ │ └── molecules │ │ │ ├── Header │ │ │ ├── Header.tsx │ │ │ ├── index.ts │ │ │ └── styles.module.css │ │ │ └── index.ts │ ├── YamlModal │ │ ├── YamlModal.tsx │ │ └── index.ts │ ├── commonBlocks │ │ ├── CodeAndInputDownloadCreds │ │ │ ├── CodeAndInputDownloadCreds.tsx │ │ │ └── index.ts │ │ ├── CodeAndInputExportPods │ │ │ ├── CodeAndInputExportPods.tsx │ │ │ └── index.ts │ │ ├── Codes │ │ │ └── _Codes.mdx │ │ ├── EtcdCommandList │ │ │ ├── EtcdCommandList.tsx │ │ │ ├── index.ts │ │ │ └── molecules │ │ │ │ ├── EtcdCommandTable.tsx │ │ │ │ └── index.ts │ │ ├── Example │ │ │ ├── Example.tsx │ │ │ └── index.ts │ │ ├── ExampleMarkdown │ │ │ └── _ExampleMarkdown.mdx │ │ ├── Fancybox │ │ │ ├── Fancybox.tsx │ │ │ └── index.tsx │ │ ├── FancyboxDiagram │ │ │ ├── FancyboxDiagram.tsx │ │ │ └── index.tsx │ │ ├── FancyboxImage │ │ │ ├── FancyboxImage.tsx │ │ │ └── index.tsx │ │ ├── Restrictions │ │ │ ├── Restrictions.tsx │ │ │ └── index.ts │ │ ├── Terminology │ │ │ ├── Terminology.tsx │ │ │ └── index.ts │ │ └── index.ts │ └── swagger.tsx ├── constants │ ├── dictionary.ts │ ├── errorCodes.tsx │ ├── kubernetes │ │ ├── backupScript.ts │ │ ├── certs.ts │ │ ├── componentsVersion.ts │ │ ├── customValue.ts │ │ ├── downloads.ts │ │ ├── etcdArgs.ts │ │ ├── kubeAPIArgs.ts │ │ ├── kubeControllerManagerArgs.ts │ │ ├── kubeSchedulerArgs.ts │ │ ├── kubeadmConfigData.ts │ │ ├── kubeletConfigData.ts │ │ ├── kubernetesArgs.ts │ │ ├── kubernetesAudt.ts │ │ └── ports.ts │ ├── monitoring │ │ └── componentsVersion.ts │ ├── restrictions.tsx │ └── terminology.tsx ├── css │ ├── custom.scss │ ├── global.scss │ ├── header.scss │ ├── infima.scss │ ├── layout.scss │ ├── sidebar.scss │ └── table-of-contents.scss ├── customTypes │ ├── certs.ts │ ├── componentsVersion.ts │ ├── customValue.ts │ ├── dictionary.ts │ ├── downloads.ts │ ├── errorCodes.ts │ ├── ports.ts │ ├── restrictions.ts │ └── terminology.ts ├── global.d.ts ├── pages │ ├── index.tsx │ └── markdown-page.md ├── sidebars │ └── technical-docs │ │ ├── etcd.ts │ │ ├── kubernetes.ts │ │ └── main.ts ├── theme │ ├── Navbar │ │ ├── ColorModeToggle │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Content │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Layout │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── Logo │ │ │ └── index.js │ │ ├── MobileSidebar │ │ │ ├── Header │ │ │ │ └── index.js │ │ │ ├── Layout │ │ │ │ └── index.js │ │ │ ├── PrimaryMenu │ │ │ │ └── index.js │ │ │ ├── SecondaryMenu │ │ │ │ └── index.js │ │ │ ├── Toggle │ │ │ │ └── index.js │ │ │ └── index.js │ │ ├── Search │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ └── index.js │ └── Root.js └── utils │ └── getBasePrefix.ts ├── static ├── .nojekyll ├── CNAME ├── img │ ├── audit │ │ └── audit-promo.png │ ├── background.jpg │ ├── bgp-global.drawio.svg │ ├── bgp-local.drawio.svg │ ├── blog │ │ ├── audit-policies-promo.png │ │ ├── kthw-promo.png │ │ └── pod-exec-promo.png │ ├── certificates │ │ ├── certificates-masters-transport.svg │ │ ├── certificates-masters.svg │ │ ├── certificates-workers-transport.svg │ │ └── certificates-workers.svg │ ├── commics │ │ └── monkey-user │ │ │ ├── aaa-bug.png │ │ │ ├── astonishment.png │ │ │ ├── astonishment5.png │ │ │ ├── astonishment6.png │ │ │ ├── bug-carrot.png │ │ │ ├── bug-carrot2.png │ │ │ ├── image.png │ │ │ ├── k8s.png │ │ │ └── nice-man.png │ ├── components │ │ └── pie.svg │ ├── control-plane │ │ ├── load-balancer.svg │ │ └── transport.svg │ ├── controllers │ │ ├── instance-cotroller.drawio.svg │ │ ├── project-cotroller.drawio.svg │ │ └── project-quota-controller.drawio.svg │ ├── etcd │ │ ├── etcd-backup.svg │ │ ├── etcd-certificates.svg │ │ ├── etcd-metrics.svg │ │ ├── etcd-peer.svg │ │ └── etcd-server.svg │ ├── favicon.ico │ ├── network │ │ ├── bgp-global.drawio │ │ ├── bgp-global.drawio.svg │ │ ├── bgp-local.drawio │ │ ├── bgp-local.drawio.svg │ │ ├── garp.drawio │ │ ├── garp.drawio.svg │ │ ├── l2-global.drawio │ │ ├── l2-global.drawio.svg │ │ ├── l2-local.drawio │ │ ├── l2-local.drawio.svg │ │ ├── overlay-network.drawio │ │ ├── overlay-network.drawio.svg │ │ ├── underlay-network.drawio │ │ └── underlay-network.drawio.svg │ ├── paws.png │ ├── paws2.svg │ ├── rick-20m.png │ ├── sgroups.database.erd.svg │ └── sgroups.monitoring.metrics.png └── js │ ├── header-enabler.js │ ├── header.bundle.js │ └── observer.js └── tsconfig.json /.github/workflows/document.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/.github/workflows/document.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | docs.dobry-kot.ru -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/README.md -------------------------------------------------------------------------------- /documentation/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/.editorconfig -------------------------------------------------------------------------------- /documentation/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/.eslintignore -------------------------------------------------------------------------------- /documentation/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/.eslintrc.json -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/.prettierrc -------------------------------------------------------------------------------- /documentation/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/.stylelintignore -------------------------------------------------------------------------------- /documentation/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/.stylelintrc -------------------------------------------------------------------------------- /documentation/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/babel.config.js -------------------------------------------------------------------------------- /documentation/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/blog/authors.yml -------------------------------------------------------------------------------- /documentation/blog/kubernetes-audit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/blog/kubernetes-audit.mdx -------------------------------------------------------------------------------- /documentation/blog/kubernetes-exec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/blog/kubernetes-exec.css -------------------------------------------------------------------------------- /documentation/blog/kubernetes-exec.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/blog/kubernetes-exec.mdx -------------------------------------------------------------------------------- /documentation/blog/kubernetes-the-hard-way.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/blog/kubernetes-the-hard-way.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/empty.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: empty 3 | --- 4 | -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/architecture.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/center-authority/etcdCA/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/center-authority/etcdCA/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/center-authority/etcdCA/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/center-authority/etcdCA/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/center-authority/etcdCA/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/center-authority/etcdCA/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/center-authority/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/center-authority/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/certificateAuthorityCerts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/certificateAuthorityCerts.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdPeer/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/etcdServer/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/etcd/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/etcd/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/components/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/components/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/certificates/componentsCerts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/certificates/componentsCerts.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/allSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/allSetup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/allSetupComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/allSetupComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/checkBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/checkBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/checks/statusBinFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/checks/statusBinFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/checks/statusBinVersion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/checks/statusBinVersion.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/componentReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/componentReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/kubeadmInit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/kubeadmInit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/kubeadmJoin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/kubeadmJoin.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/lifecycleDownloadStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/lifecycleDownloadStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/payload/downloadBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/payload/downloadBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/removeMembers.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: remove-members 3 | --- 4 | 5 | # 5.1.3.3. Удаление узла 6 | 7 | TODO 8 | -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/scripts/download-script.sh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/scripts/download-script.sh.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/setupInit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/setupInit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/setupInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/setupInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/setupJoin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/setupJoin.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/setupJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/setupJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/staticPodInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/staticPodInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcd/staticPodJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcd/staticPodJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/backupScriptBash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/backupScriptBash.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/backupScriptCloudInit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/backupScriptCloudInit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/checkInstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/checkInstall.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/checks/statusHelmInstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/checks/statusHelmInstall.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/checks/statusStaticPodInstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/checks/statusStaticPodInstall.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/payload/helmInstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/payload/helmInstall.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/payload/staticPodInstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/payload/staticPodInstall.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/setup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/components/etcdbrctl/setupComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/components/etcdbrctl/setupComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/setup-environments/base-os/allBaseOSSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/setup-environments/base-os/allBaseOSSetup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/setup-environments/base-os/allBaseOSSetupComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/setup-environments/base-os/allBaseOSSetupComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/setup-environments/base-os/baseOSSetupComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/setup-environments/base-os/baseOSSetupComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/setup-environments/osSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/setup-environments/osSetup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/alias.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/alias.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/backups.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/backups.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/check-box.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | id: check-box 3 | --- 4 | 5 | # 5.1.5.1. Чек Бокс -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/commands.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/commands.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/compaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/compaction.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/defrag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/defrag.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputCrushedNodeK8s.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputCrushedNodeK8s.tsx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputCrushedNodeKubeApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputCrushedNodeKubeApi.tsx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputSingleNodeK8s.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputSingleNodeK8s.tsx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputSingleNodeKubeApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputSingleNodeKubeApi.tsx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputThreeNodeK8s.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputThreeNodeK8s.tsx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputThreeNodeKubeApi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputThreeNodeKubeApi.tsx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputThreeNodeKubeApiGardener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/CodeAndInputThreeNodeKubeApiGardener.tsx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/blocks/index.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/crushedNodeK8s.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/crushedNodeK8s.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/crushedNodeKubeApi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/crushedNodeKubeApi.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/singleNodeK8s.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/singleNodeK8s.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/singleNodeKubeApi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/singleNodeKubeApi.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeK8s.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeK8s.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeK8sNEW.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeK8sNEW.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeKubeApi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeKubeApi.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeKubeApiGardener.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restore/threeNodeKubeApiGardener.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restoreEtcdK8s.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restoreEtcdK8s.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restoreEtcdK8sEtcdbrctl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restoreEtcdK8sEtcdbrctl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/troubleshooting/restoreEtcdKupeApi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/troubleshooting/restoreEtcdKupeApi.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/etcd/tuning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/etcd/tuning.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes-network/base-load-balancer-principal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes-network/base-load-balancer-principal.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes-network/base-pod-underlay-principal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes-network/base-pod-underlay-principal.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes-network/metallb/base-load-balancer-metallb.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes-network/metallb/base-load-balancer-metallb.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes-network/metallb/metallb-ip-address-pool.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes-network/metallb/metallb-ip-address-pool.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes-network/metallb/metallb-l2-advertisement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes-network/metallb/metallb-l2-advertisement.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes-network/resourceService.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes-network/resourceService.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/marking/allMarking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/marking/allMarking.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/marking/allMarkingComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/marking/allMarkingComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/marking/markingInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/marking/markingInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/marking/markingJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/marking/markingJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-ca/allUploadCA.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-ca/allUploadCA.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-ca/allUploadCAComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-ca/allUploadCAComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-ca/uploadCAComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-ca/uploadCAComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/allUploadConfigs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/allUploadConfigs.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/allUploadConfigsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/allUploadConfigsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/uploadConfigsInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/uploadConfigsInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/uploadConfigsJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-configs/uploadConfigsJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-rbac/allUploadRbac.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-rbac/allUploadRbac.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-rbac/allUploadRbacComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-rbac/allUploadRbacComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/additional-setup/upload-rbac/rbacComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/additional-setup/upload-rbac/rbacComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/aboutAllComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/aboutAllComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/allCertificates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/allCertificates.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/allCertificatesComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/allCertificatesComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/allKubeconfigsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/allKubeconfigsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/allCAComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/allCAComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/allСA.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/allСA.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/downloadCA.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/downloadCA.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/downloadCAKubeadmComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/downloadCAKubeadmComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/downloadCAOpensslComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/downloadCAOpensslComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/frontProxyCA/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/frontProxyCA/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/frontProxyCA/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/frontProxyCA/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/frontProxyCA/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/frontProxyCA/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/init.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/init.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/join.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/join.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/kubernetesCA/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/kubernetesCA/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/kubernetesCA/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/kubernetesCA/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/center-authority/kubernetesCA/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/center-authority/kubernetesCA/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/initAllCertsGen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/initAllCertsGen.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/initAllKubeconfigGen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/initAllKubeconfigGen.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/joinAllCertsGen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/joinAllCertsGen.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/joinAllKubeconfigGen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/_kubeadm/joinAllKubeconfigGen.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/_openssl/allAppCerts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/_openssl/allAppCerts.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/_openssl/allAppKubeconfigs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/_openssl/allAppKubeconfigs.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/kubeconfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/kubeconfig.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/adminClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/kubeconfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/kubeconfig.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/admin/superAdminClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allCertificates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allCertificates.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allCertificatesAppsInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allCertificatesAppsInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allCertificatesAppsJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allCertificatesAppsJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allCertificatesComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allCertificatesComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigs.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigsAppsInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigsAppsInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigsAppsJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigsAppsJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/allKubeconfigsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/initCerts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/initCerts.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/initKubeconfigs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/initKubeconfigs.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/joinCerts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/joinCerts.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/etcdClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/frontProxyClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeAPIServer/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/kubeletClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeAPI/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/kubeconfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/kubeconfig.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeAPIClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/kubeControllerManagerServer/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeControllerManager/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/kubeconfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/kubeconfig.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeAPIClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/kubeSchedulerServer/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubeScheduler/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/kubeconfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/kubeconfig.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeAPIClient/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/checks/statusKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/checks/statusKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/checks/statusOpenssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/checks/statusOpenssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/openssl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/kubeletServer/openssl.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/main.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/components/kubelet/main.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/examination/allExamination.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/examination/allExamination.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/examination/allExaminationComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/examination/allExaminationComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/examination/examinationComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/examination/examinationComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/examination/examinationKubeadmComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/examination/examinationKubeadmComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/examination/examinationOpensslComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/examination/examinationOpensslComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/service-account/allServiceAccount.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/service-account/allServiceAccount.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/service-account/allServiceAccountComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/service-account/allServiceAccountComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/service-account/serviceAccountComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/service-account/serviceAccountComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/service-account/serviceAccountHardWayComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/service-account/serviceAccountHardWayComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/certificates/service-account/serviceAccountKubeadmComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/certificates/service-account/serviceAccountKubeadmComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/_kubeadm/initAllStaticPodsGen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/_kubeadm/initAllStaticPodsGen.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/_kubeadm/joinAllStaticPodsGen.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/_kubeadm/joinAllStaticPodsGen.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allComponentsReady.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allComponentsReady.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allComponentsReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allComponentsReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allInstall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allInstall.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allInstallComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allInstallComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allSetup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allSetupComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allSetupComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allStaticPods.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allStaticPods.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPPhasesComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allStaticPodsCPPhasesComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/allStaticPodsETCDComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/allStaticPodsETCDComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/componentsAbout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/componentsAbout.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/componentsReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/componentsReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/componentsReadyInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/componentsReadyInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/componentsReadyJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/componentsReadyJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/checkBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/checkBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/checkComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/checkComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusBinFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusBinFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusBinVersion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusBinVersion.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusConfigFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusConfigFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusSystemdUnit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/checks/statusSystemdUnit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/componentReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/componentReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleDownload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleDownload.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleDownloadStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleDownloadStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleSettings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleSettings.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleSettingsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleSettingsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleSettingsStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/lifecycleSettingsStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/payload/configFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/payload/configFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/payload/dir.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/payload/dir.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/payload/downloadBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/payload/downloadBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/payload/setupSystemdUnit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/payload/setupSystemdUnit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/payload/startSystemdUnit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/payload/startSystemdUnit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/containerd/scripts/download-script.sh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/containerd/scripts/download-script.sh.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/controllerManager/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/controllerManager/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/controllerManager/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/controllerManager/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/controllerManager/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/controllerManager/setup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/controllerManager/setupInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/controllerManager/setupInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/controllerManager/setupJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/controllerManager/setupJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/controllerManager/staticPod.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/controllerManager/staticPod.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/checkBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/checkBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/checkComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/checkComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/checks/status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/checks/status.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/checks/statusBinFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/checks/statusBinFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/checks/statusBinVersion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/checks/statusBinVersion.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/checks/statusConfigFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/checks/statusConfigFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/componentReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/componentReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleDownload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleDownload.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleDownloadStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleDownloadStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleSettings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleSettings.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleSettingsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleSettingsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleSettingsStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/lifecycleSettingsStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/payload/configFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/payload/configFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/payload/downloadBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/payload/downloadBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/crictl/scripts/download-script.sh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/crictl/scripts/download-script.sh.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeAPI/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeAPI/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeAPI/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeAPI/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeAPI/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeAPI/setup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeAPI/setupInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeAPI/setupInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeAPI/setupJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeAPI/setupJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeAPI/staticPod.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeAPI/staticPod.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/checkBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/checkBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/checkComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/checkComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/status.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/statusBinFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/statusBinFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/statusBinVersion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/statusBinVersion.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/statusConfigFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/checks/statusConfigFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/componentReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/componentReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/configs/initConfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/configs/initConfig.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/configs/joinConfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/configs/joinConfig.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleDownload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleDownload.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleDownloadStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleDownloadStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleSettings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleSettings.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleSettingsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleSettingsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleSettingsStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/lifecycleSettingsStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/payload/configFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/payload/configFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/payload/dir.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/payload/dir.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/payload/downloadBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/payload/downloadBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/phases/phaseKubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/phases/phaseKubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/phases/phaseKubeadmInit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/phases/phaseKubeadmInit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/phases/phaseKubeadmJoin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/phases/phaseKubeadmJoin.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubeadm/scripts/download-script.sh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubeadm/scripts/download-script.sh.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/checkBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/checkBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/checks/status.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/checks/status.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/checks/statusBinFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/checks/statusBinFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/checks/statusBinVersion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/checks/statusBinVersion.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/componentReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/componentReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/lifecycleDownload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/lifecycleDownload.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/lifecycleDownloadStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/lifecycleDownloadStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/payload/downloadBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/payload/downloadBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubectl/scripts/download-script.sh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubectl/scripts/download-script.sh.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/allServiceStart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/allServiceStart.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/allServiceStartComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/allServiceStartComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/auditPolicy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/auditPolicy.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/checkBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/checkBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/checkComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/checkComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusBinFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusBinFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusBinVersion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusBinVersion.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusConfigFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusConfigFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusSystemdUnitEnabled.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusSystemdUnitEnabled.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusSystemdUnitRunning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/checks/statusSystemdUnitRunning.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/kubeadm/systemdUnitStartInit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/kubeadm/systemdUnitStartInit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/kubeadm/systemdUnitStartJoin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/kubeadm/systemdUnitStartJoin.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleDownload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleDownload.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleDownloadStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleDownloadStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleSettings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleSettings.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleSettingsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleSettingsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleSettingsStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/lifecycleSettingsStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/payload/configFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/payload/configFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/payload/configFilesDefault.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/payload/configFilesDefault.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/payload/dir.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/payload/dir.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/payload/downloadBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/payload/downloadBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/payload/setupSystemdUnit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/payload/setupSystemdUnit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/payload/startSystemdUnit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/payload/startSystemdUnit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/scripts/download-script.sh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/scripts/download-script.sh.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/systemdUnit/systemdUnitEnable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/systemdUnit/systemdUnitEnable.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/kubelet/systemdUnit/systemdUnitStart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/kubelet/systemdUnit/systemdUnitStart.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/checkBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/checkBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/checks/statusBinFiles.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/checks/statusBinFiles.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/checks/statusBinVersion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/checks/statusBinVersion.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/componentReadyComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/componentReadyComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/lifecycleDownload.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/lifecycleDownload.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/lifecycleDownloadComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/lifecycleDownloadComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/lifecycleDownloadStatus.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/lifecycleDownloadStatus.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/payload/downloadBIN.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/payload/downloadBIN.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/runc/scripts/download-script.sh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/runc/scripts/download-script.sh.ts -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/scheduler/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/scheduler/about.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/scheduler/kubeadm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/scheduler/kubeadm.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/scheduler/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/scheduler/setup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/scheduler/setupInitComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/scheduler/setupInitComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/scheduler/setupJoinComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/scheduler/setupJoinComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/components/scheduler/staticPod.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/components/scheduler/staticPod.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/flowcharts/arch.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/flowcharts/arch.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/flowcharts/components.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/flowcharts/components.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/flowcharts/schemaCerts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/flowcharts/schemaCerts.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/flowcharts/topologyInfra.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/flowcharts/topologyInfra.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/introduction.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/kubeadmJoin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/kubeadmJoin.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/kubernetesInit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/kubernetesInit.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/kubernetesInitManifests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/kubernetesInitManifests.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/kubernetesJoin.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/kubernetesJoin.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/computeResourceManagement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/computeResourceManagement.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/containerization.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/containerization.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/dataStoreManagement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/dataStoreManagement.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/integrations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/integrations.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/integrationsReq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/integrationsReq.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/logging.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/logging.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/monitoring.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/monitoring.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/network.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/network.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/orkestrations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/orkestrations.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/portal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/portal.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/quotarResourceManagement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/quotarResourceManagement.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/requirements/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/requirements/security.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/allMasterTabs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/allMasterTabs.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/base-os/allBaseOSSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/base-os/allBaseOSSetup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/base-os/allBaseOSSetupComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/base-os/allBaseOSSetupComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/base-os/baseOSSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/base-os/baseOSSetup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/base-os/baseOSSetupComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/base-os/baseOSSetupComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/initMaster.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/initMaster.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/modprobe/allModprobe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/modprobe/allModprobe.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/modprobe/allModprobeComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/modprobe/allModprobeComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/modprobe/coreModulesComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/modprobe/coreModulesComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/osSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/osSetup.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/secondaryMasters.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/secondaryMasters.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/sysctls/allSysctls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/sysctls/allSysctls.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/sysctls/allSysctlsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/sysctls/allSysctlsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/setup-environments/sysctls/sysctlsComponent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/setup-environments/sysctls/sysctlsComponent.mdx -------------------------------------------------------------------------------- /documentation/docs/tech-docs/kubernetes/statusCluster.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docs/tech-docs/kubernetes/statusCluster.mdx -------------------------------------------------------------------------------- /documentation/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/docusaurus.config.ts -------------------------------------------------------------------------------- /documentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/package.json -------------------------------------------------------------------------------- /documentation/plugins/medusa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/plugins/medusa.js -------------------------------------------------------------------------------- /documentation/plugins/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/plugins/webpack.js -------------------------------------------------------------------------------- /documentation/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/sidebars.ts -------------------------------------------------------------------------------- /documentation/src/api/getRepoInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/api/getRepoInfo.tsx -------------------------------------------------------------------------------- /documentation/src/components/AaaBug/AaaBug.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/AaaBug/AaaBug.tsx -------------------------------------------------------------------------------- /documentation/src/components/AaaBug/index.ts: -------------------------------------------------------------------------------- 1 | export * from './AaaBug' 2 | -------------------------------------------------------------------------------- /documentation/src/components/AaaBug/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/AaaBug/styles.module.css -------------------------------------------------------------------------------- /documentation/src/components/GithubLink/GithubLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/GithubLink/GithubLink.tsx -------------------------------------------------------------------------------- /documentation/src/components/GithubLink/GithubLinkMob.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/GithubLink/GithubLinkMob.tsx -------------------------------------------------------------------------------- /documentation/src/components/GithubLink/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/GithubLink/index.js -------------------------------------------------------------------------------- /documentation/src/components/Landing/index.ts: -------------------------------------------------------------------------------- 1 | export * from './molecules' 2 | -------------------------------------------------------------------------------- /documentation/src/components/Landing/molecules/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/Landing/molecules/Header/Header.tsx -------------------------------------------------------------------------------- /documentation/src/components/Landing/molecules/Header/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Header' 2 | -------------------------------------------------------------------------------- /documentation/src/components/Landing/molecules/Header/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/Landing/molecules/Header/styles.module.css -------------------------------------------------------------------------------- /documentation/src/components/Landing/molecules/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Header' 2 | -------------------------------------------------------------------------------- /documentation/src/components/YamlModal/YamlModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/YamlModal/YamlModal.tsx -------------------------------------------------------------------------------- /documentation/src/components/YamlModal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './YamlModal' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/CodeAndInputDownloadCreds/CodeAndInputDownloadCreds.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/CodeAndInputDownloadCreds/CodeAndInputDownloadCreds.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/CodeAndInputDownloadCreds/index.ts: -------------------------------------------------------------------------------- 1 | export * from './CodeAndInputDownloadCreds' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/CodeAndInputExportPods/CodeAndInputExportPods.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/CodeAndInputExportPods/CodeAndInputExportPods.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/CodeAndInputExportPods/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/CodeAndInputExportPods/index.ts -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Codes/_Codes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/Codes/_Codes.mdx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/EtcdCommandList/EtcdCommandList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/EtcdCommandList/EtcdCommandList.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/EtcdCommandList/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EtcdCommandList' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/EtcdCommandList/molecules/EtcdCommandTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/EtcdCommandList/molecules/EtcdCommandTable.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/EtcdCommandList/molecules/index.ts: -------------------------------------------------------------------------------- 1 | export * from './EtcdCommandTable' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Example/Example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/Example/Example.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Example/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Example' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/ExampleMarkdown/_ExampleMarkdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/ExampleMarkdown/_ExampleMarkdown.mdx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Fancybox/Fancybox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/Fancybox/Fancybox.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Fancybox/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './Fancybox' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/FancyboxDiagram/FancyboxDiagram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/FancyboxDiagram/FancyboxDiagram.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/FancyboxDiagram/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './FancyboxDiagram' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/FancyboxImage/FancyboxImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/FancyboxImage/FancyboxImage.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/FancyboxImage/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './FancyboxImage' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Restrictions/Restrictions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/Restrictions/Restrictions.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Restrictions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Restrictions' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Terminology/Terminology.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/Terminology/Terminology.tsx -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/Terminology/index.ts: -------------------------------------------------------------------------------- 1 | export * from './Terminology' 2 | -------------------------------------------------------------------------------- /documentation/src/components/commonBlocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/commonBlocks/index.ts -------------------------------------------------------------------------------- /documentation/src/components/swagger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/components/swagger.tsx -------------------------------------------------------------------------------- /documentation/src/constants/dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/dictionary.ts -------------------------------------------------------------------------------- /documentation/src/constants/errorCodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/errorCodes.tsx -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/backupScript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/backupScript.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/certs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/certs.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/componentsVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/componentsVersion.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/customValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/customValue.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/downloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/downloads.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/etcdArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/etcdArgs.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/kubeAPIArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/kubeAPIArgs.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/kubeControllerManagerArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/kubeControllerManagerArgs.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/kubeSchedulerArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/kubeSchedulerArgs.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/kubeadmConfigData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/kubeadmConfigData.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/kubeletConfigData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/kubeletConfigData.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/kubernetesArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/kubernetesArgs.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/kubernetesAudt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/kubernetesAudt.ts -------------------------------------------------------------------------------- /documentation/src/constants/kubernetes/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/kubernetes/ports.ts -------------------------------------------------------------------------------- /documentation/src/constants/monitoring/componentsVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/monitoring/componentsVersion.ts -------------------------------------------------------------------------------- /documentation/src/constants/restrictions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/restrictions.tsx -------------------------------------------------------------------------------- /documentation/src/constants/terminology.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/constants/terminology.tsx -------------------------------------------------------------------------------- /documentation/src/css/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/css/custom.scss -------------------------------------------------------------------------------- /documentation/src/css/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/css/global.scss -------------------------------------------------------------------------------- /documentation/src/css/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/css/header.scss -------------------------------------------------------------------------------- /documentation/src/css/infima.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/css/infima.scss -------------------------------------------------------------------------------- /documentation/src/css/layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/css/layout.scss -------------------------------------------------------------------------------- /documentation/src/css/sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/css/sidebar.scss -------------------------------------------------------------------------------- /documentation/src/css/table-of-contents.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/css/table-of-contents.scss -------------------------------------------------------------------------------- /documentation/src/customTypes/certs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/certs.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/componentsVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/componentsVersion.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/customValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/customValue.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/dictionary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/dictionary.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/downloads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/downloads.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/errorCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/errorCodes.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/ports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/ports.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/restrictions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/restrictions.ts -------------------------------------------------------------------------------- /documentation/src/customTypes/terminology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/customTypes/terminology.ts -------------------------------------------------------------------------------- /documentation/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/global.d.ts -------------------------------------------------------------------------------- /documentation/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/pages/index.tsx -------------------------------------------------------------------------------- /documentation/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/pages/markdown-page.md -------------------------------------------------------------------------------- /documentation/src/sidebars/technical-docs/etcd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/sidebars/technical-docs/etcd.ts -------------------------------------------------------------------------------- /documentation/src/sidebars/technical-docs/kubernetes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/sidebars/technical-docs/kubernetes.ts -------------------------------------------------------------------------------- /documentation/src/sidebars/technical-docs/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/sidebars/technical-docs/main.ts -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/ColorModeToggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/ColorModeToggle/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/ColorModeToggle/styles.module.css: -------------------------------------------------------------------------------- 1 | .darkNavbarColorModeToggle:hover { 2 | background: var(--ifm-color-gray-800); 3 | } 4 | -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/Content/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/Content/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/Content/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/Content/styles.module.css -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/Layout/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/Layout/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/Layout/styles.module.css -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/Logo/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/MobileSidebar/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/MobileSidebar/Header/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/MobileSidebar/Layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/MobileSidebar/Layout/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/MobileSidebar/PrimaryMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/MobileSidebar/PrimaryMenu/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/MobileSidebar/SecondaryMenu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/MobileSidebar/SecondaryMenu/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/MobileSidebar/Toggle/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/MobileSidebar/Toggle/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/MobileSidebar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/MobileSidebar/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/Search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/Search/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/Search/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/Search/styles.module.css -------------------------------------------------------------------------------- /documentation/src/theme/Navbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Navbar/index.js -------------------------------------------------------------------------------- /documentation/src/theme/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/src/theme/Root.js -------------------------------------------------------------------------------- /documentation/src/utils/getBasePrefix.ts: -------------------------------------------------------------------------------- 1 | export const getBasePrefix = (): string | undefined => process.env.BASEURL 2 | -------------------------------------------------------------------------------- /documentation/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/static/CNAME: -------------------------------------------------------------------------------- 1 | docs.dobry-kot.ru 2 | -------------------------------------------------------------------------------- /documentation/static/img/audit/audit-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/audit/audit-promo.png -------------------------------------------------------------------------------- /documentation/static/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/background.jpg -------------------------------------------------------------------------------- /documentation/static/img/bgp-global.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/bgp-global.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/bgp-local.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/bgp-local.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/blog/audit-policies-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/blog/audit-policies-promo.png -------------------------------------------------------------------------------- /documentation/static/img/blog/kthw-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/blog/kthw-promo.png -------------------------------------------------------------------------------- /documentation/static/img/blog/pod-exec-promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/blog/pod-exec-promo.png -------------------------------------------------------------------------------- /documentation/static/img/certificates/certificates-masters-transport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/certificates/certificates-masters-transport.svg -------------------------------------------------------------------------------- /documentation/static/img/certificates/certificates-masters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/certificates/certificates-masters.svg -------------------------------------------------------------------------------- /documentation/static/img/certificates/certificates-workers-transport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/certificates/certificates-workers-transport.svg -------------------------------------------------------------------------------- /documentation/static/img/certificates/certificates-workers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/certificates/certificates-workers.svg -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/aaa-bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/aaa-bug.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/astonishment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/astonishment.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/astonishment5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/astonishment5.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/astonishment6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/astonishment6.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/bug-carrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/bug-carrot.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/bug-carrot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/bug-carrot2.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/image.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/k8s.png -------------------------------------------------------------------------------- /documentation/static/img/commics/monkey-user/nice-man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/commics/monkey-user/nice-man.png -------------------------------------------------------------------------------- /documentation/static/img/components/pie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/components/pie.svg -------------------------------------------------------------------------------- /documentation/static/img/control-plane/load-balancer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/control-plane/load-balancer.svg -------------------------------------------------------------------------------- /documentation/static/img/control-plane/transport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/control-plane/transport.svg -------------------------------------------------------------------------------- /documentation/static/img/controllers/instance-cotroller.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/controllers/instance-cotroller.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/controllers/project-cotroller.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/controllers/project-cotroller.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/controllers/project-quota-controller.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/controllers/project-quota-controller.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/etcd/etcd-backup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/etcd/etcd-backup.svg -------------------------------------------------------------------------------- /documentation/static/img/etcd/etcd-certificates.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/etcd/etcd-certificates.svg -------------------------------------------------------------------------------- /documentation/static/img/etcd/etcd-metrics.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/etcd/etcd-metrics.svg -------------------------------------------------------------------------------- /documentation/static/img/etcd/etcd-peer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/etcd/etcd-peer.svg -------------------------------------------------------------------------------- /documentation/static/img/etcd/etcd-server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/etcd/etcd-server.svg -------------------------------------------------------------------------------- /documentation/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/favicon.ico -------------------------------------------------------------------------------- /documentation/static/img/network/bgp-global.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/bgp-global.drawio -------------------------------------------------------------------------------- /documentation/static/img/network/bgp-global.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/bgp-global.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/network/bgp-local.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/bgp-local.drawio -------------------------------------------------------------------------------- /documentation/static/img/network/bgp-local.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/bgp-local.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/network/garp.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/garp.drawio -------------------------------------------------------------------------------- /documentation/static/img/network/garp.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/garp.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/network/l2-global.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/l2-global.drawio -------------------------------------------------------------------------------- /documentation/static/img/network/l2-global.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/l2-global.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/network/l2-local.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/l2-local.drawio -------------------------------------------------------------------------------- /documentation/static/img/network/l2-local.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/l2-local.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/network/overlay-network.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/overlay-network.drawio -------------------------------------------------------------------------------- /documentation/static/img/network/overlay-network.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/overlay-network.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/network/underlay-network.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/underlay-network.drawio -------------------------------------------------------------------------------- /documentation/static/img/network/underlay-network.drawio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/network/underlay-network.drawio.svg -------------------------------------------------------------------------------- /documentation/static/img/paws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/paws.png -------------------------------------------------------------------------------- /documentation/static/img/paws2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/paws2.svg -------------------------------------------------------------------------------- /documentation/static/img/rick-20m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/rick-20m.png -------------------------------------------------------------------------------- /documentation/static/img/sgroups.database.erd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/sgroups.database.erd.svg -------------------------------------------------------------------------------- /documentation/static/img/sgroups.monitoring.metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/img/sgroups.monitoring.metrics.png -------------------------------------------------------------------------------- /documentation/static/js/header-enabler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/js/header-enabler.js -------------------------------------------------------------------------------- /documentation/static/js/header.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/js/header.bundle.js -------------------------------------------------------------------------------- /documentation/static/js/observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/static/js/observer.js -------------------------------------------------------------------------------- /documentation/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PRO-Robotech/in-cloud-docs/HEAD/documentation/tsconfig.json --------------------------------------------------------------------------------