├── .gitignore ├── LICENSE ├── Makefile ├── README.md └── releases ├── 1.20 ├── VERSION └── patches │ ├── 0001-TKE-FIX-revert-pr63066-to-fix-ipvs-health-check.patch │ ├── 0002-TKE-FIX-container_name-labels-for-cadvisor-metrics-when-using-containerd.patch │ ├── 0003-TKE-FIX-pr72914-to-fix-volume-attach-problem.patch │ ├── 0004-TKE-FIX-do-not-enable-cgroup-KernelMemoryAccounting.patch │ ├── 0005-TKE-FEATURE-support-dynamically-set-loglevel-for-kcm.patch │ ├── 0006-TKE-FIX-pr97752-fix-problem-when-describe-deployment.patch │ ├── 0007-TKE-FIX-store-high-level-pod-image-to-runtime-container-annotations.patch │ ├── 0008-TKE-FIX-cgroup-problem-caused-by-lxcfs.patch │ ├── 0009-TKE-FEATURE-support-eks-virtual-node.patch │ ├── 0010-TKE-FEATURE-support-eks-computeresource-sheduler-filter.patch │ ├── 0011-TKE-FEATURE-support-tencentcloud-csi-migration.patch │ ├── 0012-TKE-FIX-pr93260-fix-aws-ecr-provider-startup-latency.patch │ ├── 0013-TKE-FEATURE-add-flag-to-specify-namespace-of-EKS-configmap-for-scaling.patch │ ├── 0014-TKE-FEATURE-support-external-nodes.patch │ ├── 0015-TKE-FEATURE-modify-certificate-validity.patch │ ├── 0016-TKE-FEATURE-schedule-enhancements-for-EKS.patch │ ├── 0017-TKE-FIX-port-upsteam-fixes-releated-cgroupv2.patch │ ├── 0018-TKE-FEATURE-fix-EKS-local-replicas.patch │ ├── 0019-TKE-FEATURE-fix-no-fs-metrics-on-cgroupsv2-with-containerd.patch │ └── 0020-TKE-FIX-fix-CVE-2021-25741.patch └── 1.21 ├── VERSION └── patches ├── 0001-TKE-FIX-revert-pr63066-to-fix-ipvs-health-check.patch ├── 0002-TKE-FIX-container_name-labels-for-cadvisor-metrics-when-using-containerd.patch ├── 0003-TKE-FIX-pr72914-to-fix-volume-attach-problem.patch ├── 0004-TKE-FEATURE-support-dynamically-set-loglevel-for-kcm.patch ├── 0005-TKE-FIX-store-high-level-pod-image-to-runtime-container-annotations.patch ├── 0006-TKE-FIX-cgroup-problem-caused-by-lxcfs.patch ├── 0007-TKE-FEATURE-support-eks-virtual-node.patch ├── 0008-TKE-FEATURE-support-eks-computeresource-sheduler-filter.patch ├── 0009-TKE-FIX-pr93260-fix-aws-ecr-provider-startup-latency.patch ├── 0010-TKE-FEATURE-add-flag-to-specify-namespace-of-EKS-configmap-for-scaling.patch ├── 0011-TKE-FEATURE-support-external-nodes.patch ├── 0012-TKE-FIX-fix-CVE-2021-25741.patch ├── 0013-TKE-FEATURE-modify-certificate-validity.patch ├── 0014-TKE-FIX-pr104530-upgrade-runc-to-1.0.2.patch └── 0015-TKE-FEATURE-support-prebind-in-extender-scheduler.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/README.md -------------------------------------------------------------------------------- /releases/1.20/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/VERSION -------------------------------------------------------------------------------- /releases/1.20/patches/0001-TKE-FIX-revert-pr63066-to-fix-ipvs-health-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0001-TKE-FIX-revert-pr63066-to-fix-ipvs-health-check.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0002-TKE-FIX-container_name-labels-for-cadvisor-metrics-when-using-containerd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0002-TKE-FIX-container_name-labels-for-cadvisor-metrics-when-using-containerd.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0003-TKE-FIX-pr72914-to-fix-volume-attach-problem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0003-TKE-FIX-pr72914-to-fix-volume-attach-problem.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0004-TKE-FIX-do-not-enable-cgroup-KernelMemoryAccounting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0004-TKE-FIX-do-not-enable-cgroup-KernelMemoryAccounting.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0005-TKE-FEATURE-support-dynamically-set-loglevel-for-kcm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0005-TKE-FEATURE-support-dynamically-set-loglevel-for-kcm.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0006-TKE-FIX-pr97752-fix-problem-when-describe-deployment.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0006-TKE-FIX-pr97752-fix-problem-when-describe-deployment.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0007-TKE-FIX-store-high-level-pod-image-to-runtime-container-annotations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0007-TKE-FIX-store-high-level-pod-image-to-runtime-container-annotations.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0008-TKE-FIX-cgroup-problem-caused-by-lxcfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0008-TKE-FIX-cgroup-problem-caused-by-lxcfs.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0009-TKE-FEATURE-support-eks-virtual-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0009-TKE-FEATURE-support-eks-virtual-node.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0010-TKE-FEATURE-support-eks-computeresource-sheduler-filter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0010-TKE-FEATURE-support-eks-computeresource-sheduler-filter.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0011-TKE-FEATURE-support-tencentcloud-csi-migration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0011-TKE-FEATURE-support-tencentcloud-csi-migration.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0012-TKE-FIX-pr93260-fix-aws-ecr-provider-startup-latency.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0012-TKE-FIX-pr93260-fix-aws-ecr-provider-startup-latency.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0013-TKE-FEATURE-add-flag-to-specify-namespace-of-EKS-configmap-for-scaling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0013-TKE-FEATURE-add-flag-to-specify-namespace-of-EKS-configmap-for-scaling.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0014-TKE-FEATURE-support-external-nodes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0014-TKE-FEATURE-support-external-nodes.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0015-TKE-FEATURE-modify-certificate-validity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0015-TKE-FEATURE-modify-certificate-validity.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0016-TKE-FEATURE-schedule-enhancements-for-EKS.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0016-TKE-FEATURE-schedule-enhancements-for-EKS.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0017-TKE-FIX-port-upsteam-fixes-releated-cgroupv2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0017-TKE-FIX-port-upsteam-fixes-releated-cgroupv2.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0018-TKE-FEATURE-fix-EKS-local-replicas.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0018-TKE-FEATURE-fix-EKS-local-replicas.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0019-TKE-FEATURE-fix-no-fs-metrics-on-cgroupsv2-with-containerd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0019-TKE-FEATURE-fix-no-fs-metrics-on-cgroupsv2-with-containerd.patch -------------------------------------------------------------------------------- /releases/1.20/patches/0020-TKE-FIX-fix-CVE-2021-25741.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.20/patches/0020-TKE-FIX-fix-CVE-2021-25741.patch -------------------------------------------------------------------------------- /releases/1.21/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/VERSION -------------------------------------------------------------------------------- /releases/1.21/patches/0001-TKE-FIX-revert-pr63066-to-fix-ipvs-health-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0001-TKE-FIX-revert-pr63066-to-fix-ipvs-health-check.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0002-TKE-FIX-container_name-labels-for-cadvisor-metrics-when-using-containerd.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0002-TKE-FIX-container_name-labels-for-cadvisor-metrics-when-using-containerd.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0003-TKE-FIX-pr72914-to-fix-volume-attach-problem.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0003-TKE-FIX-pr72914-to-fix-volume-attach-problem.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0004-TKE-FEATURE-support-dynamically-set-loglevel-for-kcm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0004-TKE-FEATURE-support-dynamically-set-loglevel-for-kcm.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0005-TKE-FIX-store-high-level-pod-image-to-runtime-container-annotations.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0005-TKE-FIX-store-high-level-pod-image-to-runtime-container-annotations.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0006-TKE-FIX-cgroup-problem-caused-by-lxcfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0006-TKE-FIX-cgroup-problem-caused-by-lxcfs.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0007-TKE-FEATURE-support-eks-virtual-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0007-TKE-FEATURE-support-eks-virtual-node.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0008-TKE-FEATURE-support-eks-computeresource-sheduler-filter.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0008-TKE-FEATURE-support-eks-computeresource-sheduler-filter.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0009-TKE-FIX-pr93260-fix-aws-ecr-provider-startup-latency.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0009-TKE-FIX-pr93260-fix-aws-ecr-provider-startup-latency.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0010-TKE-FEATURE-add-flag-to-specify-namespace-of-EKS-configmap-for-scaling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0010-TKE-FEATURE-add-flag-to-specify-namespace-of-EKS-configmap-for-scaling.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0011-TKE-FEATURE-support-external-nodes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0011-TKE-FEATURE-support-external-nodes.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0012-TKE-FIX-fix-CVE-2021-25741.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0012-TKE-FIX-fix-CVE-2021-25741.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0013-TKE-FEATURE-modify-certificate-validity.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0013-TKE-FEATURE-modify-certificate-validity.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0014-TKE-FIX-pr104530-upgrade-runc-to-1.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0014-TKE-FIX-pr104530-upgrade-runc-to-1.0.2.patch -------------------------------------------------------------------------------- /releases/1.21/patches/0015-TKE-FEATURE-support-prebind-in-extender-scheduler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tkestack/tke-k8s-distro/HEAD/releases/1.21/patches/0015-TKE-FEATURE-support-prebind-in-extender-scheduler.patch --------------------------------------------------------------------------------