Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 665 for termination (0.12 sec)

  1. releasenotes/notes/skip-graceful-termination.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue: [36686]
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 03:38:52 UTC 2023
    - 180 bytes
    - Viewed (0)
  2. cni/pkg/repair/repair_test.go

    		},
    		{
    			"Check termination message match true",
    			config.RepairConfig{
    				SidecarAnnotation:  "sidecar.istio.io/status",
    				InitContainerName:  constants.ValidationContainerName,
    				InitTerminationMsg: "Termination Message",
    			},
    			makeDetectPod(
    				"TerminationMessageMatchTrue",
    				"Termination Message",
    				0),
    			true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/https.md

        * This is one of the reasons why it's very useful when the same TLS Termination Proxy also takes care of the certificate renewal process.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/envoy/agent.go

    			log.Infof("Envoy exited with status %v", status.err)
    			log.Infof("Graceful termination logic ended prematurely, envoy process terminated early")
    			return
    		case <-time.After(a.terminationDrainDuration):
    			log.Infof("Graceful termination period complete, terminating remaining proxies.")
    			a.abortCh <- errAbort
    		}
    	}
    	status := <-a.statusCh
    	if status.err == errAbort {
    		log.Infof("Envoy aborted normally")
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination.go

    	apirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/klog/v2"
    )
    
    func WithWatchTerminationDuringShutdown(handler http.Handler, termination apirequest.ServerShutdownSignal, wg RequestWaitGroup) http.Handler {
    	if termination == nil || wg == nil {
    		klog.Warningf("watch termination during shutdown not attached to the handler chain")
    		return handler
    	}
    	return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. pkg/config/gateway/gateway.go

    func IsTLSServer(server *v1alpha3.Server) bool {
    	// to filter out https redirect
    	if server.Tls != nil && !protocol.Parse(server.Port.Protocol).IsHTTP() {
    		return true
    	}
    	return false
    }
    
    // IsHTTPSServerWithTLSTermination returns true if the server is HTTPS with TLS termination
    func IsHTTPSServerWithTLSTermination(server *v1alpha3.Server) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:13:01 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/graceful_termination.go

    	defer q.lock.Unlock()
    
    	if rs, ok := q.list[uniqueRS]; ok {
    		return rs, true
    	}
    	return nil, false
    }
    
    // GracefulTerminationManager manage rs graceful termination information and do graceful termination work
    // rsList is the rs list to graceful termination, ipvs is the ipvsinterface to do ipvs delete/update work
    type GracefulTerminationManager struct {
    	rsList graceTerminateRSList
    	ipvs   utilipvs.Interface
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. releasenotes/notes/35111.yaml

        coming from outside the mesh.
    docs:
      - https://docs.google.com/document/d/15Qhr7errbylXEzxxCK7ij_oUpn4E5SFU2uDdl_n2GIc/edit#heading=h.h3lxcxfhqndp
    securityNotes:
      - |
        This feature extends the sidecar API such that the users can provide their certificates and offload the TLS/mTLS 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 14 00:19:57 UTC 2022
    - 580 bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_termination_order.go

    	v1 "k8s.io/api/core/v1"
    
    	"k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    // terminationOrdering is used to enforce a termination ordering for sidecar containers.  It sets up
    // dependencies between sidecars and allows the pod termination process to wait until the grace period
    // expires, or all dependent containers have finished terminating.
    type terminationOrdering struct {
    	// terminated is a map from container name to a channel, that if closed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/util/Strings.java

                if ( len > maxLen ) {
                    if ( log.isDebugEnabled() ) {
                        log.warn("Failed to find string termination with max length " + maxLen);
                        log.debug(Hexdump.toHexString(buffer, bufferIndex, len));
                    }
                    throw new RuntimeCIFSException("zero termination not found");
                }
            }
            return len;
        }
    
    
        /**
         * @param src
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top