Merge pull request #93023 from krzysied/adapter_apply

Using kubectl apply to create metric adapter
This commit is contained in:
Kubernetes Prow Robot
2020-09-23 03:42:08 -07:00
committed by GitHub

View File

@@ -265,7 +265,7 @@ func CreateAdapter(adapterDeploymentFile string) error {
if err != nil {
return err
}
stat, err := framework.RunKubectl("", "create", "-f", adapterURL)
stat, err := framework.RunKubectl("", "apply", "-f", adapterURL)
framework.Logf(stat)
return err
}