Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for utilsexec (0.13 sec)

  1. cmd/kubeadm/app/preflight/checks.go

    	"k8s.io/apimachinery/pkg/util/validation"
    	versionutil "k8s.io/apimachinery/pkg/util/version"
    	kubeadmversion "k8s.io/component-base/version"
    	"k8s.io/klog/v2"
    	system "k8s.io/system-validators/validators"
    	utilsexec "k8s.io/utils/exec"
    	netutils "k8s.io/utils/net"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/images"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/apply.go

    	"github.com/spf13/cobra"
    	"github.com/spf13/pflag"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/version"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/klog/v2"
    	utilsexec "k8s.io/utils/exec"
    
    	kubeadmapi "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm"
    	"k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/validation"
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd/options"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. pkg/volume/iscsi/iscsi.go

    }
    
    // Block Volumes Support
    type iscsiDiskMapper struct {
    	*iscsiDisk
    	readOnly   bool
    	exec       utilexec.Interface
    	deviceUtil ioutil.DeviceUtil
    }
    
    var _ volume.BlockVolumeMapper = &iscsiDiskMapper{}
    
    type iscsiDiskUnmapper struct {
    	*iscsiDisk
    	exec       utilexec.Interface
    	deviceUtil ioutil.DeviceUtil
    	volume.MetricsNil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  4. pkg/kubelet/volume_host.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"fmt"
    	"net"
    	"runtime"
    
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    	utilexec "k8s.io/utils/exec"
    
    	authenticationv1 "k8s.io/api/authentication/v1"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/wait"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pkg/volume/fc/fc.go

    package fc
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/mount-utils"
    	utilexec "k8s.io/utils/exec"
    	"k8s.io/utils/io"
    	utilstrings "k8s.io/utils/strings"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubernetes/pkg/volume"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pkg/util/iptables/iptables.go

    	"regexp"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	utilversion "k8s.io/apimachinery/pkg/util/version"
    	utilwait "k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/klog/v2"
    	utilexec "k8s.io/utils/exec"
    	utiltrace "k8s.io/utils/trace"
    )
    
    // RulePosition holds the -I/-A flags for iptable
    type RulePosition string
    
    const (
    	// Prepend is the insert flag for iptable
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  7. pkg/volume/fc/fc_util.go

    limitations under the License.
    */
    
    package fc
    
    import (
    	"fmt"
    	"io/ioutil"
    	"os"
    	"path/filepath"
    	"regexp"
    	"strconv"
    	"strings"
    
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    	utilexec "k8s.io/utils/exec"
    
    	"k8s.io/kubernetes/pkg/volume"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    )
    
    type ioHandler interface {
    	ReadDir(dirname string) ([]os.FileInfo, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  8. pkg/volume/util/volumepathhandler/volume_path_handler.go

    limitations under the License.
    */
    
    package volumepathhandler
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    	utilexec "k8s.io/utils/exec"
    
    	"k8s.io/apimachinery/pkg/types"
    )
    
    const (
    	losetupPath       = "losetup"
    	ErrDeviceNotFound = "device not found"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/ipset/ipset.go

    		return false
    	}
    
    	return true
    }
    
    type runner struct {
    	exec utilexec.Interface
    }
    
    // New returns a new Interface which will exec ipset.
    func New(exec utilexec.Interface) Interface {
    	return &runner{
    		exec: exec,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/expand/expand_controller.go

    }
    
    func (expc *expandController) GetMounter(pluginName string) mount.Interface {
    	return nil
    }
    
    func (expc *expandController) GetExec(pluginName string) utilexec.Interface {
    	return utilexec.New()
    }
    
    func (expc *expandController) GetHostName() string {
    	return ""
    }
    
    func (expc *expandController) GetHostIP() (net.IP, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top