Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ServiceNames (0.3 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/connections.go

    	w := c.tabwriter()
    	d := c.ztunnelDump
    	serviceNames := map[string]string{}
    	workloadNames := map[string]string{}
    	for _, s := range d.Services {
    		var ip string
    		if len(s.Addresses) != 0 {
    			_, ip, _ = strings.Cut(s.Addresses[0], "/")
    		}
    		if ip == "" {
    			// fallback to None when a service does not have a VIP
    			ip = "None"
    		}
    		serviceNames[ip] = s.Hostname
    	}
    	for _, s := range d.Workloads {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/deployment/services.go

    )
    
    type ServiceAssociationAnalyzer struct{}
    
    var _ analysis.Analyzer = &ServiceAssociationAnalyzer{}
    
    type (
    	PortMap             map[int32]ProtocolMap
    	ProtocolMap         map[core_v1.Protocol]ServiceNames
    	ServiceNames        []string
    	ServiceSpecWithName struct {
    		Name string
    		Spec *core_v1.ServiceSpec
    	}
    )
    
    // targetPort port serviceName
    type targetPortMap map[string]map[int32]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. pkg/kube/krt/bench_test.go

    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test"
    )
    
    type Workload struct {
    	krt.Named
    	ServiceNames []string
    	IP           string
    }
    
    // GetLabelSelector defaults to using Reflection which is slow. Provide a specialized implementation that does it more efficiently.
    type ServiceWrapper struct{ *v1.Service }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/service.go

    	Version               uint32
    	NotifyCallback        uintptr
    	Context               uintptr
    	NotificationStatus    uint32
    	ServiceStatus         SERVICE_STATUS_PROCESS
    	NotificationTriggered uint32
    	ServiceNames          *uint16
    }
    
    type SERVICE_FAILURE_ACTIONS struct {
    	ResetPeriod  uint32
    	RebootMsg    *uint16
    	Command      *uint16
    	ActionsCount uint32
    	Actions      *SC_ACTION
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    	g.Expect(si.exportedToNamespace).To(HaveLen(1))
    	g.Expect(serviceNames(si.exportedToNamespace["namespace"])).To(Equal([]string{"svc-namespace"}))
    
    	g.Expect(serviceNames(si.public)).To(Equal([]string{"svc-public", "svc-unset"}))
    
    	// Should just have "test1"
    	g.Expect(si.privateByNamespace).To(HaveLen(1))
    	g.Expect(serviceNames(si.privateByNamespace["test1"])).To(Equal([]string{"svc-private"}))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top