How to deploy an application in IBM websphere server with a azure devops pipeline's?

81 views Asked by At

I have an application in repo of azure devops and I want create a pipeline that connects to IBM websphere server to deploy it with azure release.

The WAS is onpremise, but the repository azure is in cloud and I need automate the deploy of an application.

1

There are 1 answers

0
Miao Tian-MSFT On
  1. Create a build pipeline to build your application and create an artifact (e.g., a WAR file).
  2. Ensure that your Azure DevOps agents can communicate directly with the WebSphere server over the network. If the hosted agent can't access your WebSphere server, you can try to use a self-hosted agent which can access the server.
  3. You can install the IBM WebSphere Application Server extension in your organization. Then you can deploy applications to IBM WebSphere with the IBM WebSphere Deployment task.

enter image description here