Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 355 for ServiceName (0.19 sec)

  1. tests/integration/telemetry/api/testdata/gateway-api.yaml

    kind: Gateway
    metadata:
      name: {{ .To.ServiceName }}-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: http
        port: 80
        protocol: HTTP
        hostname: "*.{{ .To.ServiceName }}.com"
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      parentRefs:
      - name: {{ .To.ServiceName }}-gateway
      hostnames:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 574 bytes
    - Viewed (0)
  2. tests/integration/ambient/testdata/requestauthn/waypoint-jwt.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: default-{{ .To.ServiceName }}
    spec:
      targetRefs:
      - kind: Gateway
        group: gateway.networking.k8s.io
        name: waypoint
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
      - issuer: "******@****.***"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. tests/integration/security/pass_through_filter_chain_test.go

    					name: "DISABLE with STRICT",
    					config: `apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: {{ .To.ServiceName }}-mtls
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      mtls:
        mode: DISABLE
      portLevelMtls:
        {{ (.To.PortForName "tcp-wl-only").WorkloadPort }}:
          mode: STRICT`,
    					expected: []expect{
    						{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. tests/integration/security/testdata/authz/not-method.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}-allow
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
          - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 268 bytes
    - Viewed (0)
  5. tests/integration/security/testdata/requestauthn/headers-params.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "https://raw.githubusercontent.com/istio/istio/master/tests/common/jwt/jwks.json"
        fromHeaders:
        - name: "x-jwt-token"
          prefix: "Value "
        - name: "auth-token"
          prefix: "Token "
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 867 bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/not-port.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}-allow
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
          - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 307 bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/path-templating.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
            - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 314 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/webhook/serviceresolver_test.go

    import (
    	"fmt"
    	"testing"
    )
    
    func TestDefaultServiceResolver(t *testing.T) {
    	scenarios := []struct {
    		serviceName      string
    		serviceNamespace string
    		port             int32
    		expectedOutput   string
    		expectError      bool
    	}{
    		// scenario 1: a service name along with a namespace resolves
    		{serviceName: "ross", serviceNamespace: "andromeda", port: 443, expectedOutput: "https://ross.andromeda.svc:443"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 08 07:19:52 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. tests/integration/security/policy_attachment_only/jwt_gateway_test.go

    								WithHost(fmt.Sprintf("example.%s.com", to.ServiceName())).
    								Build()
    							opts.Check = check.Status(http.StatusForbidden)
    						},
    					},
    					{
    						name: "allow with sub-1 token",
    						customizeCall: func(opts *echo.CallOptions, to echo.Target) {
    							opts.HTTP.Path = "/"
    							opts.HTTP.Headers = headers.New().
    								WithHost(fmt.Sprintf("example.%s.com", to.ServiceName())).
    								WithAuthz(jwt.TokenIssuer1).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/conversion_test.go

    	}
    
    	if service.Hostname != ServiceHostname(serviceName, namespace, domainSuffix) {
    		t.Fatalf("service hostname incorrect => %q, want %q",
    			service.Hostname, ServiceHostname(serviceName, namespace, domainSuffix))
    	}
    }
    
    func TestLBServiceConversion(t *testing.T) {
    	serviceName := "service1"
    	namespace := "default"
    
    	addresses := []corev1.LoadBalancerIngress{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top