Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 93 for podIps (0.21 sec)

  1. pkg/volume/csi/csi_mounter_test.go

    			name:           "simple specName",
    			specVolumeName: "spec-0",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "spec-0", "/mount")),
    		},
    		{
    			name:           "specName with dots",
    			specVolumeName: "test.spec.1",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "test.spec.1", "/mount")),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		actions = appendIf(actions, action{"CONNECT", itemPath + "/{path:*}", proxyParams, namer, false}, isConnecter && connectSubpath)
    
    		// list or post across namespace.
    		// For ex: LIST all pods in all namespaces by sending a LIST request at /api/apiVersion/pods.
    		// TODO: more strongly type whether a resource allows these actions on "all namespaces" (bulk delete)
    		if !isSubresource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/defaults_test.go

    										{
    											Name: "MY_POD_IP",
    											ValueFrom: &v1.EnvVarSource{
    												FieldRef: &v1.ObjectFieldSelector{
    													APIVersion: "",
    													FieldPath:  "status.podIP",
    												},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    			expected: []v1.Container{
    				{
    					Env: []v1.EnvVar{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    	}{
    		// Explanation on the Legend:
    		// a) X/Y means there are X matching pods on node1 and Y on node2, both nodes are candidates
    		//   (i.e. they have passed all predicates)
    		// b) X/~Y~ means there are X matching pods on node1 and Y on node2, but node Y is NOT a candidate
    		// c) X/?Y? means there are X matching pods on node1 and Y on node2, both nodes are candidates
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  5. docs/ru/docs/deployment/docker.md

    !!! info "Информация"
        При использовании Kubernetes, это может быть <a href="https://kubernetes.io/docs/concepts/workloads/pods/init-containers/" class="external-link" target="_blank">Инициализирующий контейнер</a>.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_test.go

    	cName3 = "container3-name"
    	cName5 = "container5-name"
    	cName6 = "container6-name"
    	cName7 = "container7-name"
    	cName8 = "container8-name"
    	cName9 = "container9-name"
    )
    
    const testPodLogDirectory = "/var/log/kube/pods/" // Use non-default path to ensure stats are collected properly
    
    func TestCRIListPodStats(t *testing.T) {
    	ctx := context.Background()
    	var (
    		imageFsMountpoint = "/test/mount/point"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

      * Stop 'kubectl drain' deleting pods with local storage.
      * Add `kubectl rollout status`
    * Security/Auth
      * L7 LB controller and disk attach controllers run on master, so nodes do not need those privileges.
      * Setting TLS1.2 minimum
      * `kubectl create secret tls` command
      * Webhook Token Authenticator
      * **beta** PodSecurityPolicy objects limits use of security-sensitive features by pods.
    * Kubectl
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    }
    
    // cleanFrontNotWaiting pops any wantConns that are no longer waiting from the head of the
    // queue, reporting whether any were popped.
    func (q *wantConnQueue) cleanFrontNotWaiting() (cleaned bool) {
    	for {
    		w := q.peekFront()
    		if w == nil || w.waiting() {
    			return cleaned
    		}
    		q.popFront()
    		cleaned = true
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    	}
    	podCfg := kubeDeps.PodConfig
    
    	if err := rlimit.SetNumFiles(uint64(kubeServer.MaxOpenFiles)); err != nil {
    		klog.ErrorS(err, "Failed to set rlimit on max file handles")
    	}
    
    	// process pods and exit.
    	if runOnce {
    		if _, err := k.RunOnce(podCfg.Updates()); err != nil {
    			return fmt.Errorf("runonce failed: %w", err)
    		}
    		klog.InfoS("Started kubelet as runonce")
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				"configmaps":       "k8s:enc:kms:v1:kms:",
    				"secrets":          "k8s:enc:kms:v1:another-kms:",
    				"events":           "k8s:enc:kms:v1:fancy:",
    				"deployments.apps": "k8s:enc:kms:v1:kms:",
    				"pods":             "k8s:enc:kms:v1:fancy:",
    				"pandas":           "k8s:enc:kms:v1:fancy:",
    				"pandas.bears":     "k8s:enc:kms:v1:yet-another-provider:",
    				"jobs.apps":        "k8s:enc:kms:v1:kms:",
    			},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top