skip to Main Content

I am using Azure DevOps on cloud for my test microservice app. So I am using my own machine as an agent to build operations. And I created a kubernetes cluster on minikube with a hyperv driver. So I want to create a release pipeline and deploy to my local kubernetes. Is this possible?

2

Answers


  1. As per your question, it is possible to create a release pipeline and you can deploy to your local kubernetes by referring to link1 and link2 .

    Login or Signup to reply.
  2. According to your description, you can try to create a new Kubernetes service connection in your project with the "KubeConfig" or "Service Account" option. It should be from your Kubernetes cluster.

    After the service connection created, you can use the "Kubectl" task in the release pipeline to deploy your local kubernetes.

    For more information, you could refer to: Kubernetes service connection.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search