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

Configuration Manager is looking for policy

I've tried all the solutions proposed in the web with no luck. The computer that i'm trying to boot is unknown for the ConfigMgr. I've created two task sequences (x86 and x64) and applied them to All Unknown Computers.
Nadjib Rebahi
  • 93
  • 1
  • 6
0
votes
0 answers

Ansible: How to pause tasks of role until event happened on other host configured by another role?

I have two hosts which I want to setup with Ansible. Each host is assigned a role (host1: r1 and host2: r2). I run the configurations in one playbook. Description: Both roles run multiple tasks, but at some point r2 needs to wait (pause execution of…
0
votes
2 answers

Puppet not uninstalling package

I'm trying to uninstall packageA with puppet, however puppet doesn't uninstall. My package resource looks like this: package { 'packageA': ensure => absent, provider => rpm, alias =>…
Yong zhu
  • 103
  • 1
  • 1
  • 6
0
votes
0 answers

How to make sure RabbitMQ configuration isn't manually changed

We have a RabbitMQ server that different products need to configure for their own purposes. We are looking at different options to automate and manage configuration of RabbitMQ for different products using either Terraform, Ansible, Chef,…
0
votes
1 answer

Best practices to be followed by Configuration management & Build Engineers

I have been working on SCM for seven months, opted Visual SVN as server and tortoise svn as client.So far i completed my seven months of journey in managing the ERP Application configuration management. I want to know whether i am following the…
0
votes
1 answer

fatal: [212.117.31.141]: FAILED! => {"msg": "Failed to get information on remote file (file.jar): Not a directory"}

Can't copy files ,because I get this error "Not a directory" - name: Copy file with owner and permissions copy: src: files/ dest: /opt/day/scripts owner: author group: aem mode: '0744' force: yes What could be the…
WhoAmI
  • 1,013
  • 2
  • 9
  • 19
0
votes
2 answers

dynamic configuration techniques for Microservices

I'm running micro services on Kubernetes cluster, currently all my configurations are injected as environment variables at the time of deployment but few micro services require certain business configuration which can change any number of time over…
mahendra
  • 367
  • 5
  • 18
0
votes
2 answers

Terraform - How do I map different azure environment variable files?

I have below two environments terraform files devenv_variables.tfvars testenv_variables.tfvars Here is devenv_variables.tfvars location = "westeurope" resource_group_name = "devenv-cloudresources-rg" Here is testenv_variables.tfvars …
kudlatiger
  • 3,028
  • 8
  • 48
  • 98
0
votes
1 answer

Common config in Kubernetes ConfigMap

Kubernetes already provides a way to manage configuration with ConfigMap. However, I have a question/problem here. If I have multiple applications with different needs deployed in Kubernetes, all these deployments might share and access some common…
edwin
  • 1,152
  • 1
  • 13
  • 27
0
votes
0 answers

Configuration Value / XML File Viewer

Anyone know of a good tool to create a dashboard of sorts to view different configuration settings. We have multiple environments and I would like to be able to get a quick glance at different configuration settings in web.configs / database tables…
Danny G
  • 3,660
  • 4
  • 38
  • 50
0
votes
1 answer

How do you ensure that Nuget packages are covered by your configuration management?

Our business practices require all configuration information to be stored such that a project can be rebuilt easily without relying on the existence of external resources. That means (among other things) that specific add-ins to Visual Studio that…
Jeff Yates
  • 61,417
  • 20
  • 137
  • 189
0
votes
1 answer

Centralized configuration for microservices and fat clients

We're looking into how we could manage the configuration of several microservices (10 - 15 services) and fat client applications which are installed in equipment (several hundreds). The applications are being developed in Java (for what it's worth).…
0
votes
1 answer

Automate the installation and configuration of Jenkins using puppet

Is there a way to automate the installation of Jenkins using puppet language? I want to be able to install Jenkins and its prerequisites without manual intervention, and configure it to serve requests of port 8000. I'm using Centos 7. Not sure where…
0
votes
1 answer

Use cases of dynamic inventories VS static inventories with ansible

I am trying to query a list of ec2 instances via ansible using the ec2 plugin for dynamic inventories. I can see the utility of using dynamic inventories. If new machines are added then ansible will automatically execute a play against them. But I…
0
votes
2 answers

What do you call a DLL that is placed on the same directory as the EXE?

I need a little help in terminology. You can put an assembly in the GAC to "share" these assembly globally in the machine. What do you call if you put the assembly in the same directory where the executable is? I have been calling it "side-by-side"…
Ian
  • 5,625
  • 11
  • 57
  • 93