Skip to content

Commit

Permalink
testsys: add conflicts_with field to resources
Browse files Browse the repository at this point in the history
  • Loading branch information
ecpullen committed Aug 31, 2022
1 parent e017568 commit 2f32245
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/testsys/src/aws_resources.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ impl AwsK8s {
},
spec: ResourceSpec {
depends_on: None,
conflicts_with: None,
agent: Agent {
name: "eks-provider".to_string(),
image: testsys_images.eks_resource.clone(),
Expand Down Expand Up @@ -233,6 +234,7 @@ impl AwsK8s {
},
spec: ResourceSpec {
depends_on: Some(vec![cluster_name]),
conflicts_with: None,
agent: Agent {
name: "ec2-provider".to_string(),
image: testsys_images.ec2_resource.clone(),
Expand Down Expand Up @@ -284,6 +286,7 @@ impl AwsK8s {
mode: sonobuoy_mode,
kubernetes_version: None,
kube_conformance_image: self.kube_conformance_image.clone(),
e2e_repo_config_base64: None,
assume_role: self.assume_role.clone(),
}
.into_map()
Expand Down Expand Up @@ -493,6 +496,7 @@ impl AwsEcs {
},
spec: ResourceSpec {
depends_on: None,
conflicts_with: None,
agent: Agent {
name: "ecs-provider".to_string(),
image: testsys_images.ecs_resource.clone(),
Expand Down Expand Up @@ -548,6 +552,7 @@ impl AwsEcs {
},
spec: ResourceSpec {
depends_on: Some(vec![cluster_name]),
conflicts_with: None,
agent: Agent {
name: "ec2-provider".to_string(),
image: testsys_images.ec2_resource.clone(),
Expand Down

0 comments on commit 2f32245

Please sign in to comment.