Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for targetRef (0.45 sec)

  1. tests/integration/telemetry/api/testdata/accesslog/targetref.yaml

    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: logs
    spec:
      targetRef:
        name: {{ .TargetGatewayName }}
        kind: Gateway
        group: gateway.networking.k8s.io
      accessLogging:
      - providers:
        - name: envoy
        disabled: {{ .DisableLogs }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 20 10:56:55 UTC 2023
    - 275 bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/endpoints.yaml

          kind: Pod
          name: pod-name-1234-0004
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0005
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0006
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 183.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/policyattachment.go

    			targetRef.GetKind() == gvk.KubernetesGateway.Kind &&
    			target.Name == gatewayName &&
    			(targetRef.GetNamespace() == "" || targetRef.GetNamespace() == p.Namespace) {
    			return true
    		}
    
    		// Service attached
    		if p.IsWaypoint &&
    			config.CanonicalGroup(targetRef.GetGroup()) == gvk.Service.CanonicalGroup() &&
    			targetRef.GetKind() == gvk.Service.Kind &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/policyattachment_test.go

    		},
    		{
    			name: "gateway API ingress and both a targetRef and a selector",
    			policy: &mockPolicyTargetGetter{
    				targetRef: sampleTargetRef,
    				selector:  sampleGatewaySelector,
    			},
    			selection: sampleGateway,
    			expected:  true,
    		},
    		{
    			name: "gateway API ingress and non-matching targetRef",
    			policy: &mockPolicyTargetGetter{
    				targetRef: waypointTargetRef,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/endpoints.yaml

          kind: Pod
          name: pod-name-1234-0004
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0005
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0006
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 25 19:51:58 UTC 2019
    - 183.9K bytes
    - Viewed (0)
  6. pkg/api/v1/endpoints/util_test.go

    			given: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{
    					{IP: "1.2.3.4", TargetRef: &fooObjRef},
    					{IP: "1.2.3.4", TargetRef: &barObjRef},
    				},
    				Ports: []v1.EndpointPort{{Port: 111}},
    			}},
    			expect: []v1.EndpointSubset{{
    				Addresses: []v1.EndpointAddress{{IP: "1.2.3.4", TargetRef: &fooObjRef}},
    				Ports:     []v1.EndpointPort{{Port: 111}},
    			}},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  7. tests/integration/security/policy_attachment_only/testdata/requestauthn/gateway-jwt.yaml.tmpl

      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz-gateway-{{ .To.ServiceName }}
    spec:
      targetRef:
        name: {{ .To.ServiceName }}-gateway
        kind: Gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. tests/integration/security/testdata/requestauthn/gateway-jwt.yaml.tmpl

      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: authz-gateway-{{ .To.ServiceName }}
    spec:
      targetRef:
        name: {{ .To.ServiceName }}-gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. tests/integration/security/policy_attachment_only/testdata/authz/gateway-authz.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default-{{ .To.ServiceName }}
    spec:
      targetRef:
        kind: Gateway
        group: gateway.networking.k8s.io
        name: {{ .To.ServiceName }}-gateway
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
    --- 
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 19:50:43 UTC 2023
    - 847 bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/endpointaddress.go

    	Hostname  *string                            `json:"hostname,omitempty"`
    	NodeName  *string                            `json:"nodeName,omitempty"`
    	TargetRef *ObjectReferenceApplyConfiguration `json:"targetRef,omitempty"`
    }
    
    // EndpointAddressApplyConfiguration constructs an declarative configuration of the EndpointAddress type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top