Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,243 for host3 (0.05 sec)

  1. istioctl/pkg/workload/testdata/vmconfig-nil-proxy-metadata/hosts.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - Viewed (0)
  2. releasenotes/notes/host-in-route-destination.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issues:
    - 33226
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 03 04:12:06 UTC 2021
    - 217 bytes
    - Viewed (0)
  3. cmd/net.go

    func isHostIP(ipAddress string) bool {
    	host, _, err := net.SplitHostPort(ipAddress)
    	if err != nil {
    		host = ipAddress
    	}
    	// Strip off IPv6 zone information.
    	if i := strings.Index(host, "%"); i > -1 {
    		host = host[:i]
    	}
    	return net.ParseIP(host) != nil
    }
    
    // extractHostPort - extracts host/port from many address formats
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-host-network-with-ns.yaml

    kind: Deployment
    metadata:
      name: hello-host-network
      namespace: sample
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello-host-network
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello-host-network
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello-host-network
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 14 17:26:47 UTC 2021
    - 556 bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/allow-host-before-111-in.yaml

    kind: AuthorizationPolicy
    metadata:
      name: httpbin-1
      namespace: foo
    spec:
      selector:
        matchLabels:
          app: httpbin
          version: v1
      rules:
        - to:
            - operation:
                hosts: ["example.com", "prefix.example.*", "*.example.com", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 10 17:02:56 UTC 2021
    - 390 bytes
    - Viewed (0)
  6. releasenotes/notes/optimize-most-specific-host-match.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 182 bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-host-network-with-ns.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello-host-network
      namespace: sample
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello-host-network
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          creationTimestamp: null
          labels:
            app: hello-host-network
            tier: backend
            track: stable
        spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 14 17:26:47 UTC 2021
    - 648 bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/config_compare_test.go

    				},
    				Spec: &networking.VirtualService{Hosts: []string{"test-host"}},
    			},
    			curr: config.Config{
    				Meta: config.Meta{
    					GroupVersionKind: gvk.VirtualService,
    					Name:             "acme2-v1",
    					Namespace:        "not-default",
    					Labels:           map[string]string{"test": "test-v1"},
    				},
    				Spec: &networking.VirtualService{Hosts: []string{"test-host", "test-host2"}},
    			},
    			expected: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 16:47:35 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_beta.yaml

        - uri:
            prefix: /
        route:
        - destination:
            host: ratings
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: VirtualService
    metadata:
      name: testing-service-02-test-01
      namespace: default
    spec:
      gateways:
      - istio-system/testing-gateway-01-test-01
      hosts:
      - wrong-01.com # Expected: validation error since this host does not exist
      http:
      - match:
        - uri:
            prefix: /
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 06 11:29:57 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/virtualservice_host_not_found_gateway_with_ns_prefix.yaml

      http:
        - match:
            - uri:
                prefix: /
          route:
            - destination:
                host: ratings
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: testing-service-01-test-01
      namespace: default
    spec:
      gateways:
        - istio-system/testing-gateway
      hosts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 4.3K bytes
    - Viewed (0)
Back to top