Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for kubeutil (0.24 sec)

  1. staging/README.md

    - [`k8s.io/kube-proxy`](https://github.com/kubernetes/kube-proxy)
    - [`k8s.io/kube-scheduler`](https://github.com/kubernetes/kube-scheduler)
    - [`k8s.io/kubectl`](https://github.com/kubernetes/kubectl)
    - [`k8s.io/kubelet`](https://github.com/kubernetes/kubelet)
    - [`k8s.io/metrics`](https://github.com/kubernetes/metrics)
    - [`k8s.io/mount-utils`](https://github.com/kubernetes/mount-utils)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/files/injection-template.yaml

        {{- if ge (len $containers) 1 }}
        {{- if not (isset .ObjectMeta.Annotations `kubectl.kubernetes.io/default-logs-container`) }}
        kubectl.kubernetes.io/default-logs-container: "{{ index $containers 0 }}",
        {{- end }}
        {{- if not (isset .ObjectMeta.Annotations `kubectl.kubernetes.io/default-container`) }}
        kubectl.kubernetes.io/default-container: "{{ index $containers 0 }}",
        {{- end }}
        {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. staging/publishing/import-restrictions.yaml

      - k8s.io/kube-openapi
      - k8s.io/klog
      - k8s.io/utils
    
    - baseImportPath: "./staging/src/k8s.io/kubectl"
      allowedImports:
      - k8s.io/api
      - k8s.io/apimachinery
      - k8s.io/cli-runtime
      - k8s.io/client-go
      - k8s.io/component-base
      - k8s.io/component-helpers
      - k8s.io/kubectl
      - k8s.io/kube-openapi
      - k8s.io/metrics
      - k8s.io/utils
      - k8s.io/klog
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. go.mod

    	k8s.io/kube-controller-manager => ./staging/src/k8s.io/kube-controller-manager
    	k8s.io/kube-proxy => ./staging/src/k8s.io/kube-proxy
    	k8s.io/kube-scheduler => ./staging/src/k8s.io/kube-scheduler
    	k8s.io/kubectl => ./staging/src/k8s.io/kubectl
    	k8s.io/kubelet => ./staging/src/k8s.io/kubelet
    	k8s.io/metrics => ./staging/src/k8s.io/metrics
    	k8s.io/mount-utils => ./staging/src/k8s.io/mount-utils
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/cluster.go

    	MetadataValue(key string) string
    
    	// ProxyKubectlOnly returns a boolean value to indicate whether all traffic
    	// should route through the HTTP proxy or only Kubectl traffic. (Useful
    	// in topologies where the API server is private but the ingress is public).
    	ProxyKubectlOnly() bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. pkg/test/kube/dump.go

    	wg := sync.WaitGroup{}
    	for _, c := range ctx.AllClusters() {
    		pods, err := c.PodsForSelector(context.TODO(), namespace, selectors...)
    		if err != nil {
    			scopes.Framework.Warnf("Error getting pods list for cluster %s via kubectl: %v", c.Name(), err)
    			return
    		}
    		if len(pods.Items) == 0 {
    			continue
    		}
    		for _, dump := range dumpers {
    			c, dump := c, dump
    			wg.Add(1)
    			go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

    fi
    }
    
    function wait-till-apiserver-ready() {
      until kubectl get nodes; do
        sleep 5
      done
    }
    
    function ensure-master-bootstrap-kubectl-auth {
      # By default, `kubectl` uses http://localhost:8080
      # If the insecure port is disabled, kubectl will need to use an admin-authenticated kubeconfig.
      if [[ -n "${KUBE_BOOTSTRAP_TOKEN:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/options/generic.go

    		`"patchtype" can be one of "strategic", "merge" or "json" and they match the patch formats ` +
    		`supported by kubectl. The default "patchtype" is "strategic". "extension" must be either ` +
    		`"json" or "yaml". "suffix" is an optional string that can be used to determine ` +
    		`which patches are applied first alpha-numerically.`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	"sort"
    	"strings"
    
    	"github.com/hashicorp/go-multierror"
    	"github.com/spf13/cobra"
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubectl/pkg/util/podutils"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	ambientutil "istio.io/istio/istioctl/pkg/util/ambient"
    	ztunnelDump "istio.io/istio/istioctl/pkg/writer/ztunnel/configdump"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. staging/publishing/rules.yaml

        - repository: kms
          branch: release-1.30
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/legacy-cloud-providers
      library: true
    - destination: kubectl
      branches:
      - name: master
        dependencies:
        - repository: api
          branch: master
        - repository: apimachinery
          branch: master
        - repository: cli-runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top