Automated code deployment to multiple servers.
Questions tagged [automated-deploy]
126 questions
0
votes
1 answer
Display hyperlink in Jenkins job
Does anyone know how to display a hyperlink (weblink) in a jenkins job build console?
I have a link, for example, www.google.com
And what I would like to do, is define this in my groovy script so that it appears as a hyperlink on the Jenkins job…

Hammed
- 1,457
- 1
- 24
- 37
0
votes
1 answer
Programmatically change the ip address a domain name resolves to for a specific query
In order to perform automated post-deployement tests on each web server behind a load balancing system, I would like to change to which ip address my request will be sent, but using the same domain name.
For example, "www.mydomain.com" normally…

Jonathan
- 1,276
- 10
- 35
0
votes
2 answers
Select value from drop-down - Python Webbot
Hi All, I'm tring to select a value from drop-down list but its not working.
This is the dropdown that Im trying to select
Below is my script.
'''
from webbot import Browser
import time
web =…

Pawan
- 1
- 2
0
votes
1 answer
Is there a way to use external variable as choice parameters in jenkins?
I want to fetch data from my sql Table and use them as a choice parameters in Jenkins
+----+
| ID |
+----+
| 11 |
| 23 |
| 45 |
| 72 |
| 5 |
| 16 |
| 71 |
| 18 |
+----+
I want to use these IDs as a choice parameter in Jenkins in order to build…

Raihan
- 27
- 4
0
votes
0 answers
Ansible pauses after trying to run a task to copy template to destination
I am trying to automate deployment for ubuntu 19 and in order to that I am loading my preseed file into the initial ram disk. I am successfully able to extract the contents of the initrd using gunzip and cpio or load into a temp folder which i will…

Tegster007
- 91
- 2
- 8
0
votes
3 answers
how do i automated MySQL data base restore everyday with crontab?
i have some demo website user can register and login and share post add products with some function but its for demo purpose only so daily 10 to 15 people register and test how its work
but i don't need everyone data i have new mysql.sql file in…
user11873055
0
votes
1 answer
How do I setup this deployment process for ASP.NET?
I run a small web development shop working with ASP.NET (Webforms and MVC). We do work for a a variety of clients so there are potentially many projects active at any time (some just waiting for a maintenance update or a bug fix).
Currently we…

William Hurst
- 2,231
- 5
- 33
- 54
0
votes
0 answers
How to write in Bash script 3-4 commits to launch different type of automated UI tests in CircleCI?
Before it was working for regression and sanity tests:
Inside config.yml file:
- run: if (git log --format=%B -n 1 $CIRCLE_SHA1) | grep -iqF release; then cd && mvn clean && mvn test -e -X…

Artur Abdullin
- 1
- 2
0
votes
1 answer
Set specific billing period when ordering Endurance iSCSI storage
I'm currently writing some blue/green deployment scripts to provision VSIs on SoftLayer (aka IBM Bluemix aka IBMCloud), and I need to provision and attach a new iSCSI storage to every green machine, the blue VSI and iSCSI storage being canceled…

JuNX
- 3
- 1
0
votes
1 answer
Can't upload mycookbook
I'm currently working on chef for deployment automation, i' building a cookbook that depends on another cookbook that i have
already downloaded from the chef supermarket (the cookbook is database 6.1.1), and i did the depends and include_recipe…
0
votes
1 answer
Extend SSAS for MSBuild like you can for SSIS
Hey so I figured out how to do automated deployment in Hosted Builds for VSTS for SSIS. I used the article in this link (https://speaksql.wordpress.com/2013/06/07/a-journey-to-db-deployment-automaton-ssis-build-using-msbuild/) with a lot of research…

LINQtothepast
- 57
- 2
- 10
0
votes
1 answer
Data location on Gitlab
Background: I'm trying to set-up automated deployment with rsync with gitlab runners.
I'm trying to find the actual code stored on a gitlab installation but i don't seem to be able to. I've found the repositories but the data so far is nowhere to be…

Bauke
- 3
- 2
0
votes
2 answers
CI: Automated Build Studio vs. Hudson vs. Atlassian Bamboo
What would be the best tool to use that can support cross platforms, remote builds and deployment for windows, linux and macosx and cost effective?
Right now were using Groovy(grails), Java, and .NET
Thanks

Randy
- 1
- 2
0
votes
1 answer
IntegrateJenkins to trigger ZAP without selenium
Is there a way to Integrate Jenkins after job build is completed to trigger Zed attack Proxy(Zap) without using Selenium?

Twin-sis
- 51
- 2
- 7
0
votes
1 answer
How to give cmd automated input via python
I want to give cmd automated input command here is my code
import subprocess
from subprocess import Popen, PIPE
p = subprocess.call("cmd",shell=True)
p = Popen('cmd', stdin=PIPE) # NOTE: no shell=True here
p.communicate(os.linesep.join(["apktool…

Azam
- 3
- 5