Questions tagged [configuration-management]

Software configuration management (SCM) is the task of tracking and controlling changes in the software deployments

In software engineering, software configuration management (SCM) is the task of tracking and controlling changes in the software. Configuration management practices include revision control and the establishment of baselines.

SCM concerns itself with answering the question "Somebody did something, how can one reproduce it?" Often the problem involves not reproducing "it" identically, but with controlled, incremental changes. Answering the question thus becomes a matter of comparing different results and of analysing their differences. Traditional configuration management typically focused on controlled creation of relatively simple products. Now, implementers of SCM face the challenge of dealing with relatively minor increments under their own control, in the context of the complex system being developed. According to another simple definition: Software Configuration Management is how you control the evolution of a software project.

407 questions
0
votes
1 answer

Use Kustomize Replacements to Replace Values in One Base with Values from Another Base?

I'm updating some of my Kubernetes configurations to use 'replacements' and 'resources' in kustomize as 'vars' and 'bases' have been deprecated. Previously, I used 'vars' in a base (/base/secrets/) like this: apiVersion:…
0
votes
0 answers

GCP : Dynamic configuration management (Application level Configurations)

Is there any dynamic configuration service in GCP ecosystem which the apps can integrate with, and get the capability to reflect any configuration changes at runtime. (i.e the config service pushes the changes to the application layer as soon as any…
0
votes
2 answers

Is it possible to map manual copied files at Perforce?

I'm managing small team project with perforce. We are now trying to merge our files, which we worked itselves. But, our data is very large and network is very slow. So, we want to copy files with HDD and copy to each other. I'm wondering, if I merge…
신승빈
  • 347
  • 3
  • 10
0
votes
0 answers

Knife Bootstrap SSH connection failed with username and password

I am trying to perform "knife bootstrap" for registering my node to the workstation. I have vm's on azure. (inbound ports are enables) I am using this command to do the knife bootstrap : "knife bootstrap -U -P
0
votes
0 answers

How can I define multiple included tasks tags based on the ansible_os_family in ansible playbook?

I have two different Ansible task files to install docker based on the OS fimily (Debian based and Redhat based). These task files are included in a main playbook (install_docker.yml) using the include_tasks module. I defined tags inside the…
Signor
  • 467
  • 2
  • 8
  • 21
0
votes
0 answers

Error: The apk for your currently selected variant cannot be signed. Please specify a signing configuration for this variant (release)

after swith to the latest version of android studio i afce the follwing error> Error: The apk for your currently selected variant cannot be signed. Please specify a signing configuration for this variant (release). the langauge is JAVA + Kotlin and…
0
votes
1 answer

Infrastructure as Code: How do you reconcile or balance mutable vs immutable aspects

We're on our migration path to IaC and I buy into the immutable concept. But my team is asking good questions, like: "you want me to redeploy an entire fleet of VMs just because we need to make a small change? Isn't that overkill? It would be faster…
0
votes
1 answer

Query TFS 2010 Database for all of yesterday's checkins, ordered by project

I'm trying to write a query for the TFS 2010 database that will return all of yesterday's checkins ordered by Team Project. So far I have: USE [Tfs_DefaultCollection] SELECT ChangeSetId, CreationDate, Comment, CommitterId FROM tbl_ChangeSet …
Chris
  • 1,231
  • 1
  • 17
  • 35
0
votes
0 answers

How does Amazon configure and manage the EC2 instances for RDS and similar services?

Many different AWS services use EC2 instances and you can understand that from the pricing pages. Basically it's a multi-instance architecture (and not the more familiar multi-tenant approach that I personally use for most web applications). When an…
0
votes
0 answers

"Root of Configuration" for GitOps and CI/CD

In reading about configuration management, GitOps and CI/CD-Pipelines, I didn't find a good answer to the following question: Who manages the configuration for the configuration management tools? If, for instance, one were to use something like…
Rumo
  • 1
  • 2
0
votes
5 answers

Software Configuration Management Tool

We are team of 4 at present. We all are working on the same project. Every morning we have to spend at least 30 minutes integrating our projects for all the changes we made previous day. To avoid all this time spent, we want a tool which is open…
0
votes
1 answer

Change Control / Configuration Management

I am looking for some software to manage configuration data within an organisation. The end result is to be able to answer the question "what breaks when I remove xyz component?" We could write this ourselves but I am sure someone has done it…
0
votes
0 answers

Free Ansible / Puppet / Chef alternative

This is a question about your opinion on a script I wrote. At my workplace I wrote a bash-script to execute commands on Linux-Systems (redhat). Since we got Ansible and Puppet nobody was interessted in the script. And to be true: if you got Ansible…
0
votes
0 answers

Salt stack top file execution

This is a sample of how my top file looks base: '*': - sls_file_1 - sls_file_2 'smtp*': - sls_file_3 - sls_file_4 sls_file_1 & sls_file_2 are expected to run on all minions while sls_file_3 & sls_file_4 only on minions with…
0
votes
1 answer

Configuration Information in DB?

I have lots of stuff in an app.config, and when changes are necessary, an app restart is required. Bad for my 24x7 web server system (it really is 24x7, not even 23x7). I would like to use a good strategy for keeping the config information in a DB…
Snowy
  • 5,942
  • 19
  • 65
  • 119