Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for addresses (0.18 sec)

  1. istioctl/pkg/util/configdump/workload.go

    }
    
    type ZtunnelService struct {
    	Name      string         `json:"name"`
    	Namespace string         `json:"namespace"`
    	Hostname  string         `json:"hostname"`
    	Addresses []string       `json:"addresses"`
    	Ports     map[string]int `json:"ports"`
    }
    
    type ZtunnelDump struct {
    	Workloads    map[string]*ZtunnelWorkload `json:"by_addr"`
    	Services     map[string]*ZtunnelService  `json:"by_vip"`
    Go
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Fri Mar 22 16:24:22 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/services.go

    		}
    		return cmp.Compare(a.Hostname, b.Hostname)
    	})
    	fmt.Fprintln(w, "NAMESPACE\tSERVICE NAME\tSERVICE VIP\tWAYPOINT")
    
    	for _, svc := range svcs {
    		var ip string
    		if len(svc.Addresses) > 0 {
    			_, ip, _ = strings.Cut(svc.Addresses[0], "/")
    		}
    		waypoint := serviceWaypointName(svc, zDump.Services)
    		fmt.Fprintf(w, "%v\t%v\t%v\t%v\n",
    			svc.Namespace, svc.Name, ip, waypoint)
    	}
    	return w.Flush()
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/discovery/v1/generated.proto

      // addressType specifies the type of address carried by this EndpointSlice.
      // All addresses in this slice must be the same type. This field is
      // immutable after creation. The following address types are currently
      // supported:
      // * IPv4: Represents an IPv4 Address.
      // * IPv6: Represents an IPv6 Address.
      // * FQDN: Represents a Fully Qualified Domain Name.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8K bytes
    - Viewed (0)
  4. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

      # outbound connections.
      # If "REDIRECT", use iptables REDIRECT to NAT and redirect to Envoy.
      # The "REDIRECT" mode loses source addresses during redirection.
      # If "TPROXY", use iptables TPROXY to redirect to Envoy.
      # The "TPROXY" mode preserves both the source and destination IP
      # addresses and ports, so that they can be used for advanced filtering
      # and manipulation.
      # The "TPROXY" mode also configures the sidecar to run with the
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

    // IPAddress represents a single IP of a single IP Family. The object is designed to be used by APIs
    // that operate on IP addresses. The object is used by the Service core API for allocation of IP addresses.
    // An IP address can be represented in different formats, to guarantee the uniqueness of the IP,
    // the name of the object is the IP address in canonical format, four decimal digits separated
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

          type: boolean
        - jsonPath: .spec.avoidBuggyIPs
          name: Avoid Buggy IPs
          type: boolean
        - jsonPath: .spec.addresses
          name: Addresses
          type: string
        name: v1beta1
        schema:
          openAPIV3Schema:
            description: IPAddressPool represents a pool of IP addresses that can be allocated
              to LoadBalancer services.
            properties:
              apiVersion:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

          jsonPath: .metadata.creationTimestamp
          name: Age
          type: date
        - description: Address associated with the network endpoint.
          jsonPath: .spec.address
          name: Address
          type: string
        name: v1
        schema:
          openAPIV3Schema:
            properties:
              spec:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
  8. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    cluster/prometheus_stats                                            cluster/prometheus_stats              -        -          -               STATIC     
    
    NAME                   ADDRESSES PORT  MATCH DESTINATION
    listener/main_internal           0     ALL   Cluster: inbound-vip|8100|http|httpbin.default.svc.cluster.local
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/listener.go

    		found := false
    		for _, address := range addresses {
    			if strings.EqualFold(address, l.Address) {
    				found = true
    			}
    		}
    		if !found {
    			return false
    		}
    	}
    	if l.Port != 0 && retrieveListenerPort(listener) != l.Port {
    		return false
    	}
    	if l.Type != "" && !strings.EqualFold(retrieveListenerType(listener), l.Type) {
    		return false
    	}
    	return true
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // subsets according to the IPs they share. A single address with multiple ports,
      // some of which are ready and some of which are not (because they come from
      // different containers) will result in the address being displayed in different
      // subsets for the different ports. No address will appear in both Addresses and
      // NotReadyAddresses in the same subset.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top