Questions tagged [automated-deployment]

65 questions
1
vote
1 answer

dropDestinationDatabase option on Web Deployment Commandline Tool

Ho, I'm trying to get msdeploy commandline tool to copy databases from dev to test. It seems to work except that I want to drop the databases on test and then recreate them -verb:sync -source:dbFullSql="Data Source=DEVSERVER;Initial…
Rob Stevenson-Leggett
  • 35,279
  • 21
  • 87
  • 141
1
vote
2 answers

Continuous Deployment Approach for on premiss Asp.Net-MVC

Remote customer's policies don't allow for me to publish from my dev environment directly to their server. I remote into environment and copy the published artifacts (Asp.Net-MVC) to the test environment. Deployment process between the different…
1
vote
1 answer

How to automate building and deploying Jekyll site to webserver via FTP

My Jekyll files are stored in Bitbucket, and I would like to be able to automatically generate the _site folder on every new change that gets pushed. (Note, I don't want to push my _site folder to Git, that is out of the question.) Once this _site…
1
vote
1 answer

Accessing local Nexus repository over https from eclipse

I am using maven build in my project. I have a corporate nexus repository in our local network. This repository is hosted over https. I am facing issues accessing this repository from eclipse. The error displayed is: Multiple annotations found at…
Prabodh Mhalgi
  • 805
  • 9
  • 25
1
vote
1 answer

E-mailing selected Range in Excel/Outlook

I have the following code (courtesy of Ron de Bruin) and am trying to figure out how to customize it for my own use. When I run the code, nothing happens (because of the Error Handler that stops the macro on the error "Subscript out of range"),…
user3794203
  • 205
  • 2
  • 7
  • 23
1
vote
4 answers

Automated deployment to Azure

I am investigating ways to automate deployment of a specific build of a product to a specific Azure Cloud Service or VM. The following steps would be automated, with as little manual intervention as possible: Create a Cloud Service or VM Install a…
1
vote
1 answer

Octopus Deploy: How to Deploy Different Projects to Different Production Machines

Simplified example of my issue... My company has 4 separate applications: App A, B, C & D. My company has 2 separate production servers. App A's Production Server = Server 1 App B's Production Server = Server 1 App C's Production Server = Server…
1
vote
1 answer

wsadmin: wsInstallApp ejb reference mapping error

I am trying to install EAR file with EJB module on IBM WAS 7.0.0.27 by using WSADMIN-wsInstallApp (for automation). but its getting below error **WASX7109E: Insufficient data for install task "MapResRefToEJB.** But the same ear file can be deployed…
Kathir
  • 28
  • 1
  • 3
0
votes
0 answers

TFS 2010 Build with MSDeploy to IIS 6 Errors - Configuration

So I've been setting up TFS 2010 automated deployment, and after the steps recommended elsewhere here on SO, I've reluctantly installed VS2010 on my build server to make it work. Now I get meaningful errors which generally allow me to fix…
reallyJim
  • 1,336
  • 2
  • 16
  • 32
0
votes
1 answer

Is it possible to configMap checksum in a normal deployment file(Non HELM)?

I have a small application with one deployment, service and 3 configMaps. It is normal Kubernetes YAML files, not a HELM setup. Is it possible to add the configMap checksum in annotations just like we can do in HELM so that whenever the configMap…
Ankit Soni
  • 95
  • 2
  • 13
0
votes
1 answer

How to organise Fully Automated Install (FAI) class hosts?

Fully Automated Install (FAI) has hosts in the file 50-host-classes. We currently have a bunch of hosts which have similar names (eg, ba-hostxx.subdomain). The sub-domains are different but one cannot specify host.subdomain in the class file as…
user7199354
0
votes
1 answer

Can liquibase be used to manage two-way changes?

I am new to liquibase, and want to check if this is the ideal tool to handle this. Please suggest others outside of liquibase too, if appropriate. Usecase: We have a property file that the user can modify. We are looking to solutions on utilizing…
0
votes
0 answers

Docker Container for Java Application with automated Updates from GitHub

I'm looking for a docker container which can run a Java application. However, this should automatically pull updates from a GitHub repository. I had the following features in mind for a Workflow: Watching on a (private) GitHub repo for merges in…
0
votes
1 answer

Prevent wp-config.php (database connection) from being overwritten upon git automated deployments

I'm having trouble getting git to ignore my wp-config.php file on deployments. I set up automated deployments with git (it's a really great tool, if you don't know about it you can read about it here - you don't need to be using kinsta hosting like…
Jillian Hoenig
  • 137
  • 1
  • 6
  • 28
0
votes
1 answer

Trying to send post request with python but doesnt work

i have this request that i intercepted from burp suite, and i am trying to automate it with a python script to send the same post request i copied all the paramaters and headerse, but it doesnt run and shows many errors, this is my code: import…