Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for lastname (0.22 sec)

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

    		if r := cmp.Compare(a.Namespace, b.Namespace); r != 0 {
    			return r
    		}
    		if r := cmp.Compare(a.Name, b.Name); r != 0 {
    			return r
    		}
    		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], "/")
    		}
    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)
  2. istioctl/pkg/util/configdump/workload.go

    }
    
    type Waypoint struct {
    	Destination string `json:"destination"`
    }
    
    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"`
    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)
  3. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

    message CertificateSigningRequestSpec {
      // Base64-encoded PKCS#10 CSR data
      // +listType=atomic
      optional bytes request = 1;
    
      // Requested signer for the request. It is a qualified name in the form:
      // `scope-hostname.io/name`.
      // If empty, it will be defaulted:
      //  1. If it's a kubelet client certificate, it is assigned
      //     "kubernetes.io/kube-apiserver-client-kubelet".
      //  2. If it's a kubelet serving certificate, it is assigned
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                            "stat_prefix": "connect_originate",
                            "cluster": "connect_originate",
                            "tunneling_config": {
                              "hostname": "%DOWNSTREAM_LOCAL_ADDRESS%"
                            }
                          }
                        }
                      ]
                    }
                  ],
                  "use_original_dst": false,
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    // more information.
    // StatefulSet represents a set of pods with consistent identities.
    // Identities are defined as:
    //   - Network: A single stable DNS and hostname.
    //   - Storage: As many VolumeClaims as requested.
    //
    // The StatefulSet guarantees that a given network identity will always
    // map to the same storage identity.
    message StatefulSet {
      // +optional
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                        by Istio are named as host:port, where the host
                                        typically corresponds to the VirtualService's
                                        host field or the hostname of a service in the
                                        registry.
                                      type: string
                                    route:
    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)
  7. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // hostname of this endpoint. This field may be used by consumers of
      // endpoints to distinguish endpoints from each other (e.g. in DNS names).
      // Multiple endpoints which use the same hostname should be considered
      // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
      // Label (RFC 1123) validation.
      // +optional
      optional string hostname = 3;
    
    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)
  8. istioctl/pkg/proxyconfig/proxyconfig.go

      istioctl proxy-config clusters <pod-name[.namespace]> --fqdn details.default.svc.cluster.local --direction inbound -o json
    
      # Retrieve cluster summary without using Kubernetes API
      ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
      istioctl proxy-config clusters --file envoy-config.json
    `,
    		Aliases: []string{"clusters", "c"},
    		Args: func(cmd *cobra.Command, args []string) error {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/ztunnel/configdump/connections.go

    	w := c.tabwriter()
    	d := c.ztunnelDump
    	serviceNames := map[string]string{}
    	workloadNames := map[string]string{}
    	for netIP, s := range d.Services {
    		_, ip, _ := strings.Cut(netIP, "/")
    		serviceNames[ip] = s.Hostname
    	}
    	for netIP, s := range d.Workloads {
    		_, ip, _ := strings.Cut(netIP, "/")
    		workloadNames[ip] = s.Name + "." + s.Namespace
    	}
    	lookupIP := func(addr string) string {
    		if filter.Raw {
    			return addr
    		}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 15:39:28 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/networking/v1/generated.proto

    message IngressLoadBalancerIngress {
      // ip is set for load-balancer ingress points that are IP based.
      // +optional
      optional string ip = 1;
    
      // hostname is set for load-balancer ingress points that are DNS based.
      // +optional
      optional string hostname = 2;
    
      // ports provides information about the ports exposed by this LoadBalancer.
      // +listType=atomic
      // +optional
      repeated IngressPortStatus ports = 4;
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
Back to top