mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-24 08:31:47 +00:00
Merge pull request #2000 from wingkwong/refak/ioutil
This commit is contained in:
commit
f2475988bd
1 changed files with 2 additions and 3 deletions
|
|
@ -19,7 +19,6 @@ package test
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
@ -49,7 +48,7 @@ const defaultBranch = "main"
|
||||||
|
|
||||||
// getKubernetesCredentials returns a path to a kubeconfig file and a kube client instance.
|
// getKubernetesCredentials returns a path to a kubeconfig file and a kube client instance.
|
||||||
func getKubernetesCredentials(kubeconfig, aksHost, aksCert, aksKey, aksCa string) (string, client.Client, error) {
|
func getKubernetesCredentials(kubeconfig, aksHost, aksCert, aksKey, aksCa string) (string, client.Client, error) {
|
||||||
tmpDir, err := ioutil.TempDir("", "*-azure-e2e")
|
tmpDir, err := os.MkdirTemp("", "*-azure-e2e")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", nil, err
|
return "", nil, err
|
||||||
}
|
}
|
||||||
|
|
@ -309,7 +308,7 @@ func getRepository(url, branchName string, overrideBranch bool, password string)
|
||||||
checkoutBranch = branchName
|
checkoutBranch = branchName
|
||||||
}
|
}
|
||||||
|
|
||||||
tmpDir, err := ioutil.TempDir("", "*-repository")
|
tmpDir, err := os.MkdirTemp("", "*-repository")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, "", err
|
return nil, "", err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue