Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for runningsds (0.27 sec)

  1. pkg/bootstrap/testdata/runningsds.proxycfg

    Rama Chavali <******@****.***> 1671589100 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 21 02:18:20 UTC 2022
    - 483 bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/runningsds_golden.json

    est","OUTLIER_LOG_PATH":"/dev/stdout","PILOT_SAN":["spiffe://cluster.local/ns/istio-system/sa/istio-pilot-service-account"],"POD_NAME":"svc-0-0-0-6944fb884d-4pgx8","PROXY_CONFIG":{"binaryPath":"/usr/local/bin/envoy","configPath":"/tmp/bootstrap/runningsds","controlPlaneAuthPolicy":"MUTUAL_TLS","customConfigFile":"envoy_bootstrap.json","discoveryAddress":"mypilot:1001","drainDuration":"5s","proxyAdminPort":15005,"serviceCluster":"istio-proxy","statNameLength":200,"statsdUdpAddress":"10.1.1.1:9125...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/bootstrap/instance_test.go

    			},
    			annotations: map[string]string{
    				"istio.io/insecurepath": "{\"paths\":[\"/metrics\",\"/live\"]}",
    			},
    			checkLocality: true,
    		},
    		{
    			base: "runningsds",
    			envVars: map[string]string{
    				"ISTIO_META_ISTIO_PROXY_SHA":   "istio-proxy:sha",
    				"ISTIO_META_INTERCEPTION_MODE": "REDIRECT",
    				"ISTIO_META_ISTIO_VERSION":     "release-3.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/helpers.go

    			klog.V(4).InfoS("Container reported running", "podSandboxId", c.PodSandboxId, "podUID", podUID, "containerName", c.Metadata.Name, "containerId", c.Id)
    			runningSet.Insert(c.Id)
    		}
    	}
    	return containerMap, runningSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. internal/s3select/sql/aggregation.go

    )
    
    type aggVal struct {
    	runningSum             *Value
    	runningCount           int64
    	runningMax, runningMin *Value
    
    	// Stores if at least one record has been seen
    	seen bool
    }
    
    func newAggVal(fn FuncName) *aggVal {
    	switch fn {
    	case aggFnAvg, aggFnSum:
    		return &aggVal{runningSum: FromFloat(0)}
    	case aggFnMin:
    		return &aggVal{runningMin: FromInt(0)}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. pkg/kubelet/userns/userns_manager_test.go

    			podSetBeforeCleanup:  []types.UID{"pod-1", "pod-2"},
    			runningPods:          []*kubecontainer.Pod{{ID: "pod-1"}},
    			podSetAfterCleanup:   []types.UID{"pod-1"},
    			podUnsetAfterCleanup: []types.UID{"pod-2"},
    		},
    		{
    			name:                 "pod set before cleanup but not listed ==> unset",
    			podSetBeforeCleanup:  []types.UID{"pod-1", "pod-2"},
    			runningPods:          []*kubecontainer.Pod{{ID: "pod-1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. pkg/kubelet/server/auth_test.go

    		"/portForward/{podNamespace}/{podID}/{uid}":         "proxy",
    		"/run/{podNamespace}/{podID}/{containerName}":       "proxy",
    		"/run/{podNamespace}/{podID}/{uid}/{containerName}": "proxy",
    		"/runningpods/":  "proxy",
    		"/stats/":        "stats",
    		"/stats/summary": "stats",
    	}
    	testCases := []AuthzTestCase{}
    	for path, subresource := range testPaths {
    		testCases = append(testCases,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 18:09:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_volumes.go

    func (kl *Kubelet) cleanupOrphanedPodDirs(pods []*v1.Pod, runningPods []*kubecontainer.Pod) error {
    	allPods := sets.New[string]()
    	for _, pod := range pods {
    		allPods.Insert(string(pod.UID))
    	}
    	for _, pod := range runningPods {
    		allPods.Insert(string(pod.ID))
    	}
    
    	found, err := kl.listPodsFromDisk()
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server.go

    	s.restfulCont.Add(ws)
    
    	s.addMetricsBucketMatcher("configz")
    	configz.InstallHandler(s.restfulCont)
    
    	// The /runningpods endpoint is used for testing only.
    	s.addMetricsBucketMatcher("runningpods")
    	ws = new(restful.WebService)
    	ws.
    		Path("/runningpods/").
    		Produces(restful.MIME_JSON)
    	ws.Route(ws.GET("").
    		To(s.getRunningPods).
    		Operation("getRunningPods"))
    	s.restfulCont.Add(ws)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  10. pkg/kubelet/userns/userns_manager.go

    	if !utilfeature.DefaultFeatureGate.Enabled(features.UserNamespacesSupport) {
    		return nil
    	}
    
    	m.lock.Lock()
    	defer m.lock.Unlock()
    
    	allPods := sets.New[string]()
    	for _, pod := range pods {
    		allPods.Insert(string(pod.UID))
    	}
    	for _, pod := range runningPods {
    		allPods.Insert(string(pod.ID))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top