Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 561 for Pods (0.06 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			args:           strings.Split("clusters invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config clusters invalid" should fail
    		},
    		{ // listeners invalid
    			args:           strings.Split("listeners invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config listeners invalid" should fail
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/metricstatus.go

    	return b
    }
    
    // WithPods sets the Pods field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Pods field is set to the value of the last call.
    func (b *MetricStatusApplyConfiguration) WithPods(value *PodsMetricStatusApplyConfiguration) *MetricStatusApplyConfiguration {
    	b.Pods = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

          operator: NotIn
          values:
          - "false"
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod-test-dev2
          namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/templates/clusterrole.yaml

      resources:
      - leases
      verbs:
      - get
      - create
      - update
    - apiGroups:
      - ""
      resources:
      - configmaps
      - endpoints
      - events
      - namespaces
      - pods
      - pods/proxy
      - pods/portforward
      - persistentvolumeclaims
      - secrets
      - services
      - serviceaccounts
      - resourcequotas
      verbs:
      - '*'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pkg/kubelet/container/cache.go

    		if cachedVal, ok := c.pods[id]; ok && cachedVal.modified.After(timestamp) {
    			return false
    		}
    	}
    
    	c.pods[id] = &data{status: status, err: err, modified: timestamp}
    	c.notify(id, timestamp)
    	return true
    }
    
    // Delete removes the entry of the pod.
    func (c *cache) Delete(id types.UID) {
    	c.lock.Lock()
    	defer c.lock.Unlock()
    	delete(c.pods, id)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 07:37:01 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. pkg/controller/deployment/recreate.go

    }
    
    // oldPodsRunning returns whether there are old pods running or any of the old ReplicaSets thinks that it runs pods.
    func oldPodsRunning(newRS *apps.ReplicaSet, oldRSs []*apps.ReplicaSet, podMap map[types.UID][]*v1.Pod) bool {
    	if oldPods := util.GetActualReplicaCountForReplicaSets(oldRSs); oldPods > 0 {
    		return true
    	}
    	for rsUID, podList := range podMap {
    		// If the pods belong to the new ReplicaSet, ignore.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 13 20:32:13 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. releasenotes/notes/50804.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 50736
    releaseNotes:
    - |
      **Added** Allow pods to be opted out of ambient capture using the `istio.io/dataplane-mode=none` label.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 387 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    	GetResource() schema.GroupVersionResource
    	// GetSubresource is the name of the subresource being requested.  This is a different resource, scoped to the parent resource, but it may have a different kind.
    	// For instance, /pods has the resource "pods" and the kind "Pod", while /pods/foo/status has the resource "pods", the sub resource "status", and the kind "Pod"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  9. tests/integration/pilot/multicluster_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if len(deps.Items) == 0 {
    				t.Skip("no deployments with label app=istiod")
    			}
    			pods := primary.Kube().CoreV1().Pods(ns)
    			podMeta := deps.Items[0].Spec.Template.ObjectMeta
    			podMeta.Name = pod
    			template := deps.Items[0].Spec.Template.Spec
    			for _, container := range template.Containers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. releasenotes/notes/48603.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 02:28:57 UTC 2024
    - 198 bytes
    - Viewed (0)
Back to top