Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,519 for kube_ (0.1 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

      if (Get-Process | Where-Object Name -eq "kube-proxy") {
        Log-Output -Fatal `
            "A kube-proxy process is already running, don't know what to do"
      }
      Log-Output "Creating kube-proxy service"
      & sc.exe create kube-proxy binPath= "${env:NODE_DIR}\kube-log-runner.exe -log-file=${env:LOGS_DIR}\kube-proxy.log ${env:NODE_DIR}\kube-proxy.exe ${kubeproxy_args}" start= demand
      & sc.exe failure kube-proxy reset= 0 actions= restart/10000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. hack/lib/golang.sh

      windows/arm64
    )
    
    # The set of server targets that we are only building for Linux
    kube::golang::server_targets() {
      local targets=(
        cmd/kube-proxy
        cmd/kube-apiserver
        cmd/kube-controller-manager
        cmd/kubelet
        cmd/kubeadm
        cmd/kube-scheduler
        staging/src/k8s.io/component-base/logs/kube-log-runner
        staging/src/k8s.io/kube-aggregator
        staging/src/k8s.io/apiextensions-apiserver
        cluster/gce/gci/mounter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.3.md

    * If you use one of the kube-dns replication controller manifest in `cluster/saltbase/salt/kube-dns`, i.e. `cluster/saltbase/salt/kube-dns/{skydns-rc.yaml.base,skydns-rc.yaml.in}`, either substitute one of `__PILLAR__FEDERATIONS__DOMAIN__MAP__` or `{{ pillar['federations_domain_map'] }}` with the corresponding federation name to...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  4. pkg/test/framework/components/namespace/kube.go

    	d, err := ctx.CreateTmpDirectory(n.name + "-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping %s contents: %v", n.name, err)
    		return
    	}
    
    	kube2.DumpPods(n.ctx, d, n.name, []string{})
    	kube2.DumpDeployments(n.ctx, d, n.name)
    }
    
    var (
    	_ Instance          = &kubeNamespace{}
    	_ io.Closer         = &kubeNamespace{}
    	_ resource.Resource = &kubeNamespace{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/jwt/kube.go

    	for _, c := range ctx.AllClusters() {
    		c := c
    		g.Go(func() error {
    			fetchFn := kube.NewPodFetch(c, s.ns.Name(), "app=jwt-server")
    			_, err := kube.WaitUntilPodsAreReady(fetchFn)
    			if err != nil {
    				return fmt.Errorf("jwt-server pod not ready in cluster %s: %v", c.Name(), err)
    			}
    
    			_, _, err = kube.WaitUntilServiceEndpointsAreReady(c.Kube(), s.ns.Name(), "jwt-server")
    			return err
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/registryredirector/kube.go

    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"time"
    
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	"istio.io/istio/pkg/test/framework/components/namespace"
    	"istio.io/istio/pkg/test/framework/resource"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/test/framework/components/gcemetadata/kube.go

    	if svc, _, err = testKube.WaitUntilServiceEndpointsAreReady(c.cluster.Kube(), c.ns.Name(), "gce-metadata-server"); err != nil {
    		scopes.Framework.Infof("Error waiting for GCE Metadata service to be available: %v", err)
    		return nil, err
    	}
    
    	// Multicluster needs to use LoadBalancer IP
    	if ctx.Environment().IsMultiCluster() {
    		lb, err := testKube.WaitUntilServiceLoadBalancerReady(c.cluster.Kube(), c.ns.Name(), "gce-metadata-server")
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istioctl/kube.go

    // to extract kube context
    type Filenamer interface {
    	Filename() string
    }
    
    func newKube(ctx resource.Context, config Config) (Instance, error) {
    	fn, ok := ctx.Clusters().GetOrDefault(config.Cluster).(Filenamer)
    	if !ok {
    		return nil, fmt.Errorf("cluster does not support fetching kube config")
    	}
    	n := &kubeComponent{
    		config:     config,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. cluster/kube-down.sh

        source "${KUBE_ROOT}/cluster/env.sh"
    fi
    
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    echo "Bringing down cluster using provider: $KUBERNETES_PROVIDER"
    
    echo "... calling verify-prereqs" >&2
    verify-prereqs
    echo "... calling verify-kube-binaries" >&2
    verify-kube-binaries
    echo "... calling kube-down" >&2
    kube-down
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 07:12:08 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/kube.go

    	istiokube "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/cert/ca"
    	testenv "istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/framework/components/cluster"
    	kubecluster "istio.io/istio/pkg/test/framework/components/cluster/kube"
    	"istio.io/istio/pkg/test/framework/components/environment/kube"
    	"istio.io/istio/pkg/test/framework/components/istio/ingress"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top