Yes, TKE (Tencent Kubernetes Engine) can create services using third-party images other than Tencent Cloud or Docker Hub images. This is achieved by specifying the image repository and tag in the pod specification.
For example, if you want to use an image from a third-party repository like AWS ECR (Elastic Container Registry), you can specify the image URI in the following format:
kubectl create deployment my-deployment --image=<aws-ecr-repo-url>/my-image:tag
TKE supports pulling images from any container registry that supports the Docker Registry API, including AWS ECR, Google Container Registry, and others.
For more information and detailed instructions on using third-party images in TKE, you can refer to the official Tencent Cloud documentation.
Additionally, if you need to manage and deploy container images more efficiently, you might consider using Tencent Cloud's Container Registry (TCR), which offers a secure, reliable, and scalable container image management service.