Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,389 for podIps (0.15 sec)

  1. pkg/test/framework/components/echo/kube/testdata/two-workloads-one-nosidecar.yaml

            - containerPort: 8080
            - containerPort: 3333
              name: tcp-health-port
            env:
            - name: INSTANCE_IP
              valueFrom:
                fieldRef:
                  fieldPath: status.podIP
            - name: NAMESPACE
              valueFrom:
                fieldRef:
                  fieldPath: metadata.namespace
            readinessProbe:
              httpGet:
                path: /
                port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. pkg/controller/controller_utils.go

    				if rankDiff == 0 {
    					return s.Pods[i].UID < s.Pods[j].UID
    				}
    				return rankDiff < 0
    			}
    		}
    	}
    	// 7. Pods with containers with higher restart counts < lower restart counts
    	if maxContainerRestarts(s.Pods[i]) != maxContainerRestarts(s.Pods[j]) {
    		return maxContainerRestarts(s.Pods[i]) > maxContainerRestarts(s.Pods[j])
    	}
    	// 8. Empty creation time pods < newer pods < older pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. istioctl/pkg/checkinject/checkinject.go

    			if err != nil {
    				return err
    			}
    			var podName, podNs string
    			var podLabels, nsLabels map[string]string
    			if len(args) == 1 {
    				podName, podNs, err = ctx.InferPodInfoFromTypedResource(args[0], ctx.Namespace())
    				if err != nil {
    					return err
    				}
    				pod, err := kubeClient.Kube().CoreV1().Pods(podNs).Get(context.TODO(), podName, metav1.GetOptions{})
    				if err != nil {
    					return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apps__v1_openapi.json

              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "string"
            },
            "podIP": {
              "description": "podIP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.",
              "type": "string"
            },
            "podIPs": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		// Such as the pod have initContainer which is initialing.
    		// See https://github.com/istio/istio/issues/48854
    		if (!IsPodRunning(p) && !IsPodPending(p)) || p.Spec.HostNetwork {
    			return nil
    		}
    		podIP, err := netip.ParseAddr(p.Status.PodIP)
    		if err != nil {
    			// Is this possible? Probably not in typical case, but anyone could put garbage there.
    			return nil
    		}
    		meshCfg := krt.FetchOne(ctx, MeshConfig.AsCollection())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. releasenotes/notes/24737.yaml

    issue:
      - 11130
    
    releaseNotes:
    - |
      **Added** config option `values.global.proxy.holdApplicationUntilProxyStarts`,
      which causes the sidecar injector to inject the sidecar at the start of the
      pod's container list and configures it to block the start of all other
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 471 bytes
    - Viewed (0)
  8. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    	for _, group := range groups {
    		// If there are no pods in a particular range,
    		// then do not wait for pods in that priority range.
    		if len(group.Pods) == 0 {
    			continue
    		}
    
    		var wg sync.WaitGroup
    		wg.Add(len(group.Pods))
    		for _, pod := range group.Pods {
    			go func(pod *v1.Pod, group podShutdownGroup) {
    				defer wg.Done()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  9. pkg/registry/core/pod/storage/storage.go

    		err = storeerr.InterpretGetError(err, api.Resource("pods"), podID)
    		err = storeerr.InterpretUpdateError(err, api.Resource("pods"), podID)
    		if _, ok := err.(*errors.StatusError); !ok {
    			err = errors.NewConflict(api.Resource("pods/binding"), podID, err)
    		}
    	}
    	return
    }
    
    var _ = rest.Creater(&LegacyBindingREST{})
    
    // LegacyBindingREST implements the REST endpoint for binding pods to nodes when etcd is in use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. pkg/kubelet/lifecycle/predicate.go

    		return true
    	}
    	return false
    }
    
    // rejectPodAdmissionBasedOnOSField rejects pods if their OS field doesn't match runtime.GOOS.
    // TODO: Relax this restriction when we start supporting LCOW in kubernetes where podOS may not match
    // node's OS.
    func rejectPodAdmissionBasedOnOSField(pod *v1.Pod) bool {
    	if pod.Spec.OS == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top