Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetDefaults_Endpoints (0.15 sec)

  1. pkg/apis/core/v1/defaults.go

    	}
    	if obj.FSType == nil {
    		obj.FSType = new(string)
    		*obj.FSType = "ext4"
    	}
    	if obj.ReadOnly == nil {
    		obj.ReadOnly = new(bool)
    		*obj.ReadOnly = false
    	}
    }
    func SetDefaults_Endpoints(obj *v1.Endpoints) {
    	for i := range obj.Subsets {
    		ss := &obj.Subsets[i]
    		for i := range ss.Ports {
    			ep := &ss.Ports[i]
    			if ep.Protocol == "" {
    				ep.Protocol = v1.ProtocolTCP
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:24:15 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/zz_generated.defaults.go

    func SetObjectDefaults_ConfigMapList(in *v1.ConfigMapList) {
    	for i := range in.Items {
    		a := &in.Items[i]
    		SetObjectDefaults_ConfigMap(a)
    	}
    }
    
    func SetObjectDefaults_Endpoints(in *v1.Endpoints) {
    	SetDefaults_Endpoints(in)
    }
    
    func SetObjectDefaults_EndpointsList(in *v1.EndpointsList) {
    	for i := range in.Items {
    		a := &in.Items[i]
    		SetObjectDefaults_Endpoints(a)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 37.8K bytes
    - Viewed (0)
Back to top