Skip to content

Commit

Permalink
Update flaky Pod test (hashicorp#2248)
Browse files Browse the repository at this point in the history
  • Loading branch information
arybolovlev authored Aug 30, 2023
1 parent 23cdb54 commit cb8b321
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance_tests_kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ env:

jobs:
acceptance_tests:
runs-on: ubuntu-latest
runs-on: [custom, linux, medium]
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
Expand Down
12 changes: 8 additions & 4 deletions kubernetes/resource_kubernetes_pod_v1_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1561,10 +1561,14 @@ func TestAccKubernetesPodV1_phase(t *testing.T) {
),
},
{
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{"metadata.0.resource_version", "target_state"},
ResourceName: resourceName,
ImportState: true,
ImportStateVerify: true,
ImportStateVerifyIgnore: []string{
"metadata.0.resource_version",
"spec.0.node_name",
"target_state",
},
},
},
})
Expand Down

0 comments on commit cb8b321

Please sign in to comment.