Questions tagged [ucd]

IBM UrbanCode Deploy

IBM UrbanCode Deploy (AKA UCD, formerly called uDeploy) is an application deployment and release automation solution. It helps organization build a DevOps pipeline across distributed teams and/or heterogenous environments. UCD also provides governance, visibility, and consistency across all deployments.

UCD has an extensive catalog of plugins which allows it to interact with application servers, databases, other middleware tiers, operating systems, test automation tooling, etc.

40 questions
77
votes
6 answers

Python regex matching Unicode properties

Perl and some other current regex engines support Unicode properties, such as the category, in a regex. E.g. in Perl you can use \p{Ll} to match an arbitrary lower-case letter, or p{Zs} for any space separator. I don't see support for this in either…
ThomasH
  • 22,276
  • 13
  • 61
  • 62
16
votes
12 answers

What are some good examples showing that "I am not the user"?

I'm a software developer who has a background in usability engineering. When I studied usability engineering in grad school, one of the professors had a mantra: "You are not the user". The idea was that we need to base UI design on actual user…
user41871
3
votes
1 answer

IBM Urbancode Deploy get current component versions deployed to an environment

I am trying get current component version of component that is deployed to an environment in UCD via REST API/Curl command . Below is sample code which returns all versions of that component which is available in UCD. It does not give me latest…
Aravinda B
  • 31
  • 3
2
votes
1 answer

When do we need to have slaves for Jenkins and when we do not?

I am a beginner user of Jenkins. I am trying to putting a development process onto the DevOps pipeline that includes Jenkins, GitHub, SonarQube, IBM UCD. It is not a very complicated deployment process and it uses windows machine. There are three…
user6934519
2
votes
2 answers

IBM Urbancode Deploy - Supply values to parameters at runtime using properties

I have created a process in IBM UCD to deploy a .Net application. My Scenario is that i should be able to provide different application name at run time each time i run the process. How can we do this using property in IBM UCD. I have tried…
Kanchana
  • 51
  • 2
  • 2
  • 3
1
vote
0 answers

IBM UbanCode Deploy - Access property from nested generic processes

I have an component process that calls a generic process (called Deploy_zOS, inside that generic process there are another 20 generic processes (each with a unique name). I want to get an output property from one of the steps but can't seemt o get…
dagonal
  • 151
  • 1
  • 13
1
vote
0 answers

Urban Code Deploy doesn't start when we try to switch the current db2 database(on AIX ) to cloned db2 database in new platform(linux)

We recently cloned our DB2 database that existed on AIX platform and created a new DB2 database in Linux platform. I can connect to the new database server from the UCD server with no firewall issues. Also user ucdadmin has all the required security…
Aastha Dahal
  • 329
  • 2
  • 11
1
vote
4 answers

How to create reusable component in UCD(UrbanCode Deploy)?

Let's say I have 4 agent configured in UCD(Urban Code Deloy) & component named test_component tagged to all agents.Now I need to make sure that component runs in only two agents(nodes). Can anyone tell me how to do that? Also I heard that reusable…
Vishnu
  • 97
  • 1
  • 13
1
vote
1 answer

XPath to modify Application Settings in Web Config

I am using XPath to modify some settings in my application's config file during a UCD deploy, however I can't figure out the right path to use. I am able to change the connection string no problem but the application settings uses a different syntax…
Lausn
  • 45
  • 6
1
vote
1 answer

How can I fetch file from Urban code Deploy workspace

I have few files in Urbancode Deploy workspace(downloaded from Artifactory). How can I fetch those files into my Java program where I am using those downloaded files in Java program. I tried like this: 1) I am calling Java class from urbancode…
Rocky Hai
  • 353
  • 1
  • 5
  • 17
1
vote
2 answers

Build and Deploy files in multiple folders in SVN into multiple folder in destination server

I am looking to automate a manual copy paste activity using SVN, Jenkins and Urban Code Deploy. We have now created a SVN repo to have the same directory structure of the Unix server Dir structure. The challenge is, I cannot do a clean deploy as I…
rocodg
  • 11
  • 2
1
vote
1 answer

UCD agent relay hierarchy

Considering the following case: one server, one agent and two relays. I would like to know if is possible to create an agent relay hierarchy to connect to the UCD server? Something like: Agent connects to Relay1 connects to Relay2 connects to UCD…
Adrian
  • 11
  • 1
1
vote
1 answer

How to get all deployment process request within a Timeframe using UrabanCode Deploy REST API?

I am looking for REST API option in UrabanCode Deploy to get all deployment process within a particular time-frame. Let's say - All deployment process request id submitted within 24 hours. - All Deploy process request submitted in Last 7 Days etc.…
Roopendra
  • 7,674
  • 16
  • 65
  • 92
1
vote
2 answers

How do I run Urban Code Deploy FVT tests locally?

My project at work used Urban Code Deploy (UCD) for its continuous deployment process. My code runs locally and passes all unit tests, but the build group says that my code is failing the FVT test being run by UCD. Is there any way to run this FVT…
1
vote
3 answers

Exclude directory in uDeploy plugin for jenkins

I'm trying to import a new version of a udeploy component through Jenkins and the uDeploy plugin that comes from a Git repository and has the .git folder in it. Everything I've tried to exclude the .git folder from syncing doesn't work. I'm thinking…
pcort
  • 419
  • 1
  • 6
  • 19
1
2 3