├── .github ├── ISSUE_TEMPLATE │ └── autobuild-k8s.md ├── scripts │ ├── download.sh │ ├── kubernetes.sh │ ├── manifest.sh │ ├── versions │ │ ├── versions.sh │ │ ├── versions_arch.sh │ │ └── versions_sealos.sh │ └── waitRunning.sh ├── versions │ ├── 1 │ │ ├── CHANGELOG-1.19.md │ │ └── CHANGELOG-1.20.md │ ├── 2 │ │ ├── CHANGELOG-1.21.md │ │ ├── CHANGELOG-1.22.md │ │ └── CHANGELOG-1.23.md │ ├── 3 │ │ ├── CHANGELOG-1.24.md │ │ └── CHANGELOG-1.25.md │ ├── 4 │ │ ├── CHANGELOG-1.26.md │ │ ├── CHANGELOG-1.27.md │ │ ├── CHANGELOG-1.28.md │ │ └── CHANGELOG-1.29.md │ └── 5 │ │ ├── CHANGELOG-1.30.md │ │ ├── CHANGELOG-1.31.md │ │ ├── CHANGELOG-1.32.md │ │ └── CHANGELOG-1.33.md └── workflows │ ├── autobuild-k3s-containerd.yml │ ├── autobuild-k8s-containerd.yml │ ├── autobuild-k8s-cri-o.yml │ └── autobuild-k8s-docker.yml ├── .gitignore ├── CHANGELOG ├── CHANGELOG-1.0.0.md └── CHANGELOG.md ├── LICENSE ├── README.md ├── containerd ├── Kubefile ├── etc │ ├── config.toml.tmpl │ ├── containerd.service.tmpl │ ├── crictl.yaml │ └── hosts.toml.tmpl └── scripts │ ├── check.sh │ ├── clean-containerd.sh │ ├── clean-cri.sh │ ├── init-containerd.sh │ └── init-cri.sh ├── cri-o ├── Kubefile ├── README.md ├── etc │ ├── 99-crio.conf.tmpl │ └── crictl.yaml └── scripts │ ├── check.sh │ ├── clean-cri.sh │ ├── clean-crio.sh │ ├── init-cri.sh │ └── init-crio.sh ├── docker ├── Kubefile ├── etc │ ├── cri-docker.service.tmpl │ ├── cri-docker.socket │ ├── crictl.yaml │ ├── daemon.json.tmpl │ └── docker.service └── scripts │ ├── check.sh │ ├── clean-cri-dockerd.sh │ ├── clean-cri.sh │ ├── clean-docker.sh │ ├── init-cri-dockerd.sh │ ├── init-cri.sh │ └── init-docker.sh ├── firecracker-microvm └── README.md ├── k3s ├── Kubefile ├── README.md ├── etc │ ├── crictl.yaml.tmpl │ ├── image-cri-shim.service │ ├── image-cri-shim.yaml.tmpl │ ├── k3s.service.tmpl │ ├── limits.d │ │ └── sealos-k8s.conf │ ├── registries.yaml.tmpl │ ├── sysctl.d │ │ └── sealos-k8s.conf │ └── zz-k3s-sealos.yaml.tmpl └── scripts │ ├── check.sh │ ├── clean-cri.sh │ ├── clean-k3s.sh │ ├── clean-shim.sh │ ├── clean.sh │ ├── common.sh │ ├── init-cri.sh │ ├── init-k3s.sh │ ├── init-shim.sh │ ├── init.sh │ ├── k3s-killall.sh │ ├── k3s-post-stop.sh │ └── k3s-pre-start.sh ├── k8s ├── README.md ├── etc │ ├── image-cri-shim.service.tmpl │ ├── image-cri-shim.yaml.tmpl │ ├── kubelet.service.tmpl │ ├── limits.d │ │ └── sealos-k8s.conf │ ├── sysctl.d │ │ └── sealos-k8s.conf │ └── systemd │ │ └── system │ │ └── kubelet.service.d │ │ └── 10-kubeadm.conf.tmpl ├── scripts │ ├── clean-kube.sh │ ├── clean-shim.sh │ ├── clean.sh │ ├── common.sh │ ├── init-kube.sh │ ├── init-shim.sh │ ├── init.sh │ ├── kubelet-post-stop.sh │ └── kubelet-pre-start.sh └── statics │ └── audit-policy.yml ├── registry ├── etc │ ├── registry.service.tmpl │ ├── registry.yml.tmpl │ └── registry_config.yml.tmpl └── scripts │ ├── clean-registry.sh │ └── init-registry.sh ├── runtime └── README.md └── version.yaml /.github/ISSUE_TEMPLATE/autobuild-k8s.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/ISSUE_TEMPLATE/autobuild-k8s.md -------------------------------------------------------------------------------- /.github/scripts/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/scripts/download.sh -------------------------------------------------------------------------------- /.github/scripts/kubernetes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/scripts/kubernetes.sh -------------------------------------------------------------------------------- /.github/scripts/manifest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/scripts/manifest.sh -------------------------------------------------------------------------------- /.github/scripts/versions/versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/scripts/versions/versions.sh -------------------------------------------------------------------------------- /.github/scripts/versions/versions_arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/scripts/versions/versions_arch.sh -------------------------------------------------------------------------------- /.github/scripts/versions/versions_sealos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/scripts/versions/versions_sealos.sh -------------------------------------------------------------------------------- /.github/scripts/waitRunning.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/scripts/waitRunning.sh -------------------------------------------------------------------------------- /.github/versions/1/CHANGELOG-1.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/versions/1/CHANGELOG-1.19.md -------------------------------------------------------------------------------- /.github/versions/1/CHANGELOG-1.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/versions/1/CHANGELOG-1.20.md -------------------------------------------------------------------------------- /.github/versions/2/CHANGELOG-1.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/versions/2/CHANGELOG-1.21.md -------------------------------------------------------------------------------- /.github/versions/2/CHANGELOG-1.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/versions/2/CHANGELOG-1.22.md -------------------------------------------------------------------------------- /.github/versions/2/CHANGELOG-1.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/versions/2/CHANGELOG-1.23.md -------------------------------------------------------------------------------- /.github/versions/3/CHANGELOG-1.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/versions/3/CHANGELOG-1.24.md -------------------------------------------------------------------------------- /.github/versions/3/CHANGELOG-1.25.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/versions/4/CHANGELOG-1.26.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/versions/4/CHANGELOG-1.27.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/versions/4/CHANGELOG-1.28.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/versions/4/CHANGELOG-1.29.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/versions/5/CHANGELOG-1.30.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/versions/5/CHANGELOG-1.31.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/versions/5/CHANGELOG-1.32.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/versions/5/CHANGELOG-1.33.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/autobuild-k3s-containerd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/workflows/autobuild-k3s-containerd.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-k8s-containerd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/workflows/autobuild-k8s-containerd.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-k8s-cri-o.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/workflows/autobuild-k8s-cri-o.yml -------------------------------------------------------------------------------- /.github/workflows/autobuild-k8s-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/.github/workflows/autobuild-k8s-docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG-1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/CHANGELOG/CHANGELOG-1.0.0.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/CHANGELOG/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/README.md -------------------------------------------------------------------------------- /containerd/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/Kubefile -------------------------------------------------------------------------------- /containerd/etc/config.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/etc/config.toml.tmpl -------------------------------------------------------------------------------- /containerd/etc/containerd.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/etc/containerd.service.tmpl -------------------------------------------------------------------------------- /containerd/etc/crictl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/etc/crictl.yaml -------------------------------------------------------------------------------- /containerd/etc/hosts.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/etc/hosts.toml.tmpl -------------------------------------------------------------------------------- /containerd/scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/scripts/check.sh -------------------------------------------------------------------------------- /containerd/scripts/clean-containerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/scripts/clean-containerd.sh -------------------------------------------------------------------------------- /containerd/scripts/clean-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/scripts/clean-cri.sh -------------------------------------------------------------------------------- /containerd/scripts/init-containerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/scripts/init-containerd.sh -------------------------------------------------------------------------------- /containerd/scripts/init-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/containerd/scripts/init-cri.sh -------------------------------------------------------------------------------- /cri-o/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/Kubefile -------------------------------------------------------------------------------- /cri-o/README.md: -------------------------------------------------------------------------------- 1 | ### support cri-o 2 | 3 | -------------------------------------------------------------------------------- /cri-o/etc/99-crio.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/etc/99-crio.conf.tmpl -------------------------------------------------------------------------------- /cri-o/etc/crictl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/etc/crictl.yaml -------------------------------------------------------------------------------- /cri-o/scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/scripts/check.sh -------------------------------------------------------------------------------- /cri-o/scripts/clean-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/scripts/clean-cri.sh -------------------------------------------------------------------------------- /cri-o/scripts/clean-crio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/scripts/clean-crio.sh -------------------------------------------------------------------------------- /cri-o/scripts/init-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/scripts/init-cri.sh -------------------------------------------------------------------------------- /cri-o/scripts/init-crio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/cri-o/scripts/init-crio.sh -------------------------------------------------------------------------------- /docker/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/Kubefile -------------------------------------------------------------------------------- /docker/etc/cri-docker.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/etc/cri-docker.service.tmpl -------------------------------------------------------------------------------- /docker/etc/cri-docker.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/etc/cri-docker.socket -------------------------------------------------------------------------------- /docker/etc/crictl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/etc/crictl.yaml -------------------------------------------------------------------------------- /docker/etc/daemon.json.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/etc/daemon.json.tmpl -------------------------------------------------------------------------------- /docker/etc/docker.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/etc/docker.service -------------------------------------------------------------------------------- /docker/scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/scripts/check.sh -------------------------------------------------------------------------------- /docker/scripts/clean-cri-dockerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/scripts/clean-cri-dockerd.sh -------------------------------------------------------------------------------- /docker/scripts/clean-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/scripts/clean-cri.sh -------------------------------------------------------------------------------- /docker/scripts/clean-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/scripts/clean-docker.sh -------------------------------------------------------------------------------- /docker/scripts/init-cri-dockerd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/scripts/init-cri-dockerd.sh -------------------------------------------------------------------------------- /docker/scripts/init-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/scripts/init-cri.sh -------------------------------------------------------------------------------- /docker/scripts/init-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/docker/scripts/init-docker.sh -------------------------------------------------------------------------------- /firecracker-microvm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/firecracker-microvm/README.md -------------------------------------------------------------------------------- /k3s/Kubefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/Kubefile -------------------------------------------------------------------------------- /k3s/README.md: -------------------------------------------------------------------------------- 1 | # K3s runtime 2 | -------------------------------------------------------------------------------- /k3s/etc/crictl.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/crictl.yaml.tmpl -------------------------------------------------------------------------------- /k3s/etc/image-cri-shim.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/image-cri-shim.service -------------------------------------------------------------------------------- /k3s/etc/image-cri-shim.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/image-cri-shim.yaml.tmpl -------------------------------------------------------------------------------- /k3s/etc/k3s.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/k3s.service.tmpl -------------------------------------------------------------------------------- /k3s/etc/limits.d/sealos-k8s.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/limits.d/sealos-k8s.conf -------------------------------------------------------------------------------- /k3s/etc/registries.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/registries.yaml.tmpl -------------------------------------------------------------------------------- /k3s/etc/sysctl.d/sealos-k8s.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/sysctl.d/sealos-k8s.conf -------------------------------------------------------------------------------- /k3s/etc/zz-k3s-sealos.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/etc/zz-k3s-sealos.yaml.tmpl -------------------------------------------------------------------------------- /k3s/scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/check.sh -------------------------------------------------------------------------------- /k3s/scripts/clean-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/clean-cri.sh -------------------------------------------------------------------------------- /k3s/scripts/clean-k3s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/clean-k3s.sh -------------------------------------------------------------------------------- /k3s/scripts/clean-shim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/clean-shim.sh -------------------------------------------------------------------------------- /k3s/scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/clean.sh -------------------------------------------------------------------------------- /k3s/scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/common.sh -------------------------------------------------------------------------------- /k3s/scripts/init-cri.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/init-cri.sh -------------------------------------------------------------------------------- /k3s/scripts/init-k3s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/init-k3s.sh -------------------------------------------------------------------------------- /k3s/scripts/init-shim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/init-shim.sh -------------------------------------------------------------------------------- /k3s/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/init.sh -------------------------------------------------------------------------------- /k3s/scripts/k3s-killall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/k3s-killall.sh -------------------------------------------------------------------------------- /k3s/scripts/k3s-post-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/k3s-post-stop.sh -------------------------------------------------------------------------------- /k3s/scripts/k3s-pre-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k3s/scripts/k3s-pre-start.sh -------------------------------------------------------------------------------- /k8s/README.md: -------------------------------------------------------------------------------- 1 | # 安装常见问题请见下面链接 2 | 3 | https://github.com/labring/sealos/issues 4 | 5 | # 技术支持 6 | 7 | 请加入QQ群(98488045) 联系稳定负责人 8 | -------------------------------------------------------------------------------- /k8s/etc/image-cri-shim.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/etc/image-cri-shim.service.tmpl -------------------------------------------------------------------------------- /k8s/etc/image-cri-shim.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/etc/image-cri-shim.yaml.tmpl -------------------------------------------------------------------------------- /k8s/etc/kubelet.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/etc/kubelet.service.tmpl -------------------------------------------------------------------------------- /k8s/etc/limits.d/sealos-k8s.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/etc/limits.d/sealos-k8s.conf -------------------------------------------------------------------------------- /k8s/etc/sysctl.d/sealos-k8s.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/etc/sysctl.d/sealos-k8s.conf -------------------------------------------------------------------------------- /k8s/etc/systemd/system/kubelet.service.d/10-kubeadm.conf.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/etc/systemd/system/kubelet.service.d/10-kubeadm.conf.tmpl -------------------------------------------------------------------------------- /k8s/scripts/clean-kube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/clean-kube.sh -------------------------------------------------------------------------------- /k8s/scripts/clean-shim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/clean-shim.sh -------------------------------------------------------------------------------- /k8s/scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/clean.sh -------------------------------------------------------------------------------- /k8s/scripts/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/common.sh -------------------------------------------------------------------------------- /k8s/scripts/init-kube.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/init-kube.sh -------------------------------------------------------------------------------- /k8s/scripts/init-shim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/init-shim.sh -------------------------------------------------------------------------------- /k8s/scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/init.sh -------------------------------------------------------------------------------- /k8s/scripts/kubelet-post-stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/kubelet-post-stop.sh -------------------------------------------------------------------------------- /k8s/scripts/kubelet-pre-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/scripts/kubelet-pre-start.sh -------------------------------------------------------------------------------- /k8s/statics/audit-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/k8s/statics/audit-policy.yml -------------------------------------------------------------------------------- /registry/etc/registry.service.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/registry/etc/registry.service.tmpl -------------------------------------------------------------------------------- /registry/etc/registry.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/registry/etc/registry.yml.tmpl -------------------------------------------------------------------------------- /registry/etc/registry_config.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/registry/etc/registry_config.yml.tmpl -------------------------------------------------------------------------------- /registry/scripts/clean-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/registry/scripts/clean-registry.sh -------------------------------------------------------------------------------- /registry/scripts/init-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/registry/scripts/init-registry.sh -------------------------------------------------------------------------------- /runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/runtime/README.md -------------------------------------------------------------------------------- /version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/labring-actions/runtime/HEAD/version.yaml --------------------------------------------------------------------------------