How to pull image from private registry on kube

I want to pull image from my private harbor

seems like this:

kind: pipeline
type: kubernetes
name: test_deploy
clone:
disable: true

trigger:
branch: release*
steps:


but it’s not working on kuber-runner

If you are pulling an image from a private registry you need to provide the registry credentials, using the syntax and process shown here:
https://docs.drone.io/pipeline/kubernetes/syntax/images/#pulling-private-images

In your example, you are using the settings section to pass credentials. The settings section is used to pass data to plugins and does not have any effect on pulling private pipeline images.