Skip to content

Commit

Permalink
Hotfix: add missing command identifier. (#225)
Browse files Browse the repository at this point in the history
* hotfix: add missing command identifier.

* update kube-proxy test lookup table with latest version build
  • Loading branch information
ryehowell authored Jan 30, 2024
1 parent e040659 commit 1227b79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eks/coredns.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func ScheduleCoredns(
} else {
err = kubectl.RunKubectl(
kubectlOptions,
"rollout", "restart", "coredns", "-n", "kube-system",
"rollout", "restart", "deployment", "coredns", "-n", "kube-system",
)

if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion eks/sync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ func TestFindLatestEKSBuilds(t *testing.T) {
{kubeProxyVersionLookupTable, kubeProxyRepoPath, "1.27", "us-east-1", "1.27.6-minimal-eksbuild.2"},
{kubeProxyVersionLookupTable, kubeProxyRepoPath, "1.26", "us-east-1", "1.26.9-minimal-eksbuild.2"},
{kubeProxyVersionLookupTable, kubeProxyRepoPath, "1.25", "us-east-1", "1.25.14-minimal-eksbuild.2"},
{kubeProxyVersionLookupTable, kubeProxyRepoPath, "1.24", "us-east-1", "1.24.17-minimal-eksbuild.7"},
{kubeProxyVersionLookupTable, kubeProxyRepoPath, "1.24", "us-east-1", "1.24.17-minimal-eksbuild.8"},
}

for _, tc := range testCase {
Expand Down

0 comments on commit 1227b79

Please sign in to comment.