Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for turn (0.03 sec)

  1. pkg/kube/kclient/client.go

    				// filter passthrough the entire namespace object, so we can pass the last known state to OnDelete.
    				// Fortunately, missing a namespace delete event usually doesn't matter since everything in the namespace gets torn down.
    			} else {
    				for ns := range added {
    					for _, item := range ic.ListUnfiltered(ns, klabels.Everything()) {
    						for _, c := range ic.registeredHandlers {
    							c.handler.OnAdd(item, false)
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

              command:
              - pilot-agent
              - wait
      {{- else if $nativeSidecar }}
        {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
        lifecycle:
          preStop:
            exec:
              command:
              - pilot-agent
              - request
    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. architecture/networking/pilot.md

    ```mermaid
    graph TD
        sd(Service Discovery)
        cs(ConfigStore)
        ep(Endpoints)
        pc(PushContext)
        sd-->pc
        cs-->pc
        sd-->ep
    ```
    
    ### Config Translation
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. pkg/config/validation/agent/validation.go

    }
    
    func (v Validation) Unwrap() (Warning, error) {
    	return v.Warning, v.Err
    }
    
    func (v Validation) Error() string {
    	if v.Err == nil {
    		return ""
    	}
    	return v.Err.Error()
    }
    
    // WrapWarning turns an error into a Validation as a warning
    func WrapWarning(e error) Validation {
    	return Validation{Warning: e}
    }
    
    // wrapper around multierror.Append that enforces the invariant that if all input errors are nil, the output
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/files/injection-template.yaml

              command:
              - pilot-agent
              - wait
      {{- else if $nativeSidecar }}
        {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
        lifecycle:
          preStop:
            exec:
              command:
              - pilot-agent
              - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_test.go

    		sendDownstreamWithNode(t, downstream, model.NodeMetadata{
    			Namespace:   "default",
    			InstanceIPs: []string{"1.1.1.1"},
    		})
    
    		// Stop server, setup a new one. This simulates an Istiod pod being torn down
    		grpcServer.Stop()
    		listener, err = net.Listen("tcp", listener.Addr().String())
    		if err != nil {
    			t.Fatal(err)
    		}
    		waitDisconnect(proxy)
    
    		grpcServer = grpc.NewServer()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top