mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-21 18:11:22 +00:00
io/ioutil has already been deprecated in golang 1.16, so replace all ioutil with io and os
This commit is contained in:
@@ -41,7 +41,6 @@ package windows
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"os/exec"
|
||||
"path"
|
||||
@@ -245,7 +244,7 @@ func retrieveCRDManifestFileContents(f *framework.Framework, node v1.Node) strin
|
||||
func deployGmsaWebhook(f *framework.Framework, deployScriptPath string) (func(), error) {
|
||||
cleanUpFunc := func() {}
|
||||
|
||||
tempDir, err := ioutil.TempDir("", "")
|
||||
tempDir, err := os.MkdirTemp("", "")
|
||||
if err != nil {
|
||||
return cleanUpFunc, fmt.Errorf("unable to create temp dir: %w", err)
|
||||
}
|
||||
@@ -287,7 +286,7 @@ func deployGmsaWebhook(f *framework.Framework, deployScriptPath string) (func(),
|
||||
func createGmsaCustomResource(ns string, crdManifestContents string) (func(), error) {
|
||||
cleanUpFunc := func() {}
|
||||
|
||||
tempFile, err := ioutil.TempFile("", "")
|
||||
tempFile, err := os.CreateTemp("", "")
|
||||
if err != nil {
|
||||
return cleanUpFunc, fmt.Errorf("unable to create temp file: %w", err)
|
||||
}
|
||||
|
@@ -19,8 +19,8 @@ package windows
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"net/http"
|
||||
"os"
|
||||
)
|
||||
|
||||
// downloadFile saves a remote URL to a local temp file, and returns its path.
|
||||
@@ -32,7 +32,7 @@ func downloadFile(url string) (string, error) {
|
||||
}
|
||||
defer response.Body.Close()
|
||||
|
||||
tempFile, err := ioutil.TempFile("", "")
|
||||
tempFile, err := os.CreateTemp("", "")
|
||||
if err != nil {
|
||||
return "", fmt.Errorf("unable to create temp file: %w", err)
|
||||
}
|
||||
|
Reference in New Issue
Block a user