Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for termination (0.12 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		if len(tls.CertificateRefs) != 1 {
    			// This is required in the API, should be rejected in validation
    			return out, &ConfigError{Reason: InvalidTLS, Message: "exactly 1 certificateRefs should be present for TLS termination"}
    		}
    		cred, err := buildSecretReference(ctx, tls.CertificateRefs[0], gw)
    		if err != nil {
    			return out, err
    		}
    		credNs := ptr.OrDefault((*string)(tls.CertificateRefs[0].Namespace), namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    	createdAt   int64
    	state       runtimeapi.PodSandboxState
    	running     bool
    	terminating bool
    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    	container      *v1.Container
    	sandboxAttempt uint32
    	attempt        int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top