Skip to content

'dependency_configuration' is undocumented and possibly has wrong default behaviour #1262

Open
@ahuseby

Description

@ahuseby

Use of dependency_configuration is evidently supported, but lacks documentation in the Digger user documentation.
I'm not sure if #782 is supposed to address this.

Furthermore dependency_configuration could potetially have the wrong default behaviour, based on the definition of the two available modes (hard and soft).

// hard - even if dependency project wasn't changed, it will be executed
// soft - if dependency project wasn't changed, it will be skipped
const (
DependencyConfigurationHard = "hard"
DependencyConfigurationSoft = "soft"
)

My experience is that without specifying anything for dependency_configuration.mode, the following happens

We have 2 projects, A and B
B is dependent on A (using 'depends_on')

We want to make a change that only affects B

  1. If we commit a change that only affects B, nothing happens.
  2. If we then add a commit with change affecting A, then a plan run starts for A and B.

The way I observe this, in regards to adjusting dependency_configuration and how it currently functions

  • The hard (default) mode requires all projects in a dependency chain to become affected by change.
  • The soft mode will e.g. allow a change only to B. This is what we want.

However, the definition from the source code tell us the opposite.

// soft - if dependency project wasn't changed, it will be skipped

So seemingly the actual observed default behaviour is that of "soft", by definition.

Is the issue perhaps on this line in the orchestrator code?

if diggerConfig.DependencyConfiguration.Mode == digger_config.DependencyConfigurationHard {

Perhaps change the condition to diggerConfig.DependencyConfiguration.Mode == digger_config.DependencyConfigurationSoft?

I have discussed this with and demonstrated it on video call to @motatoes. In those discussions I've described a transitive dependency C -> B -> A, but that doesn't seem to matter at all. With the default behaviour, for C to plan, I have to make a change affecting A aswell.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions