Strategy for storing passwords/credentials in the context of continuous delivery [closed]
Closed 10 years ago.
Why is build.number an “abuse” of semantic versioning?
I was explaining a proposed build system (Gradle/Artifactory/Jenkins/Chef) to one of our senior architects, and he made a comment to me that I sort of disagree with, but am not experienced enough to really weigh-in on.
Tracking internal builds versus public builds
At our office, we use JIRA to track issues reported by our QA teams. We also have Bamboo which builds each time we commit to our Git (Stash) repository. QA picks a build from Bamboo and they work with that build for about a week. Once all of the issues they filed on that build are resolved, they pick another build and regress/smoke test again until they find a fully passing build (i.e. no issues reported).
We’d like to release only the services that have changed, in a continuous delivery context. How would we do that?
I am new to continuous delivery, so please help me understand if my ideas are incorrect, I have XY problems, etc..
We’d like to release only the services that have changed, in a continuous delivery context. How would we do that?
I am new to continuous delivery, so please help me understand if my ideas are incorrect, I have XY problems, etc..
What are the advantages of continuous deployment? [closed]
Closed 9 years ago.
What is Quality Assurance’s role in a company that practices Continuous Delivery?
I was listening to this podcast on Continuous Delivery and Jez Humble briefly talked about QA’s role, but I didn’t really get a “big picture” idea of they’re doing on a day to day basis. How is their job description changed when a company practices Continuous Delivery?
What is Quality Assurance’s role in a company that practices Continuous Delivery?
I was listening to this podcast on Continuous Delivery and Jez Humble briefly talked about QA’s role, but I didn’t really get a “big picture” idea of they’re doing on a day to day basis. How is their job description changed when a company practices Continuous Delivery?
What is Quality Assurance’s role in a company that practices Continuous Delivery?
I was listening to this podcast on Continuous Delivery and Jez Humble briefly talked about QA’s role, but I didn’t really get a “big picture” idea of they’re doing on a day to day basis. How is their job description changed when a company practices Continuous Delivery?
DB migration and Azure deployment slots
I’m planning to push a new web application to an Azure Web App Service (former Azure Website).
I’d like to make use of the deployment slots to be able to test my deployment before pushing it to production.
That’s all fine as long as there is no DB schema change require. But if there is a schema change I can’t have two software versions operating on the same db version.
Since I’m using EF Migrations, the push to the staging slot would instantly result in a DB update to the latest version.