mirror of https://github.com/status-im/consul.git
23 lines
434 B
Go
23 lines
434 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package sprawl
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/testing/deployer/topology"
|
|
)
|
|
|
|
func (s *Sprawl) populateInitialResources(cluster *topology.Cluster) error {
|
|
if len(cluster.InitialResources) == 0 {
|
|
return nil
|
|
}
|
|
|
|
for _, res := range cluster.InitialResources {
|
|
if _, err := s.writeResource(cluster, res); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|