Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for ServiceName (0.29 sec)

  1. tests/integration/security/testdata/requestauthn/invalid-jwks.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "******@****.***"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 328 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/allow-namespace.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
            - operation: # HTTP
                ports: [ "{{ (.To.PortForName `http`).WorkloadPort }}", "{{ (.To.PortForName `http2`).WorkloadPort }}" ]
                paths: [ "/allow" ]
                methods: [ "GET" ]
          from:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 983 bytes
    - Viewed (0)
  3. tests/integration/security/testdata/requestauthn/authn-only.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"
        outputPayloadToHeader: "x-test-payload"
        outputClaimToHeaders:
        - header: "x-jwt-iss"
          claim: "iss"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 725 bytes
    - Viewed (0)
  4. tests/integration/security/testdata/authz/deny-namespace.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: DENY
      rules:
        - to:
            - operation: # HTTP
                ports: [ "{{ (.To.PortForName `http`).WorkloadPort }}", "{{ (.To.PortForName `http2`).WorkloadPort }}" ]
                paths: [ "/deny*" ]
                notPaths: ["/deny/allow"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1017 bytes
    - Viewed (0)
  5. tests/integration/security/testdata/authz/custom-provider.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: custom-{{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: CUSTOM
      provider:
        name: "{{ .Provider.Name }}"
      rules:
      - to:
        - operation: # HTTP
            ports: [ "{{ (.To.PortForName `http`).WorkloadPort }}", "{{ (.To.PortForName `http2`).WorkloadPort }}" ]
            paths: [ "/custom" ]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 724 bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/allow-principal.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: ALLOW
      rules:
        - to:
            - operation: # HTTP
                ports: [ "{{ (.To.PortForName `http`).WorkloadPort }}", "{{ (.To.PortForName `http2`).WorkloadPort }}" ]
                paths: [ "/allow" ]
                methods: [ "GET" ]
          from:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 998 bytes
    - Viewed (0)
  7. pkg/apis/networking/v1beta1/conversion.go

    	if err := autoConvert_v1beta1_IngressBackend_To_networking_IngressBackend(in, out, s); err != nil {
    		return err
    	}
    	if len(in.ServiceName) > 0 || in.ServicePort.IntVal != 0 || in.ServicePort.StrVal != "" || in.ServicePort.Type == intstr.String {
    		out.Service = &networking.IngressServiceBackend{}
    		out.Service.Name = in.ServiceName
    		out.Service.Port.Name = in.ServicePort.StrVal
    		out.Service.Port.Number = in.ServicePort.IntVal
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.Ingress.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. tests/integration/telemetry/tracing/tracing.go

    	serverSpan := zipkin.Span{
    		Name:        fmt.Sprintf("server.%s.svc.cluster.local:80/*", namespace),
    		ServiceName: fmt.Sprintf("server.%s", namespace),
    	}
    
    	root = zipkin.Span{
    		Name:        fmt.Sprintf("server.%s.svc.cluster.local:80/*", namespace),
    		ServiceName: fmt.Sprintf("client-%s.%s", clName, namespace),
    		ChildSpans:  []*zipkin.Span{&serverSpan},
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

       * to the string returned by {@link #serviceName}
       */
      protected Executor executor() {
        return command -> MoreExecutors.newThread(serviceName(), command).start();
      }
    
      @Override
      public String toString() {
        return serviceName() + " [" + state() + "]";
      }
    
      @Override
      public final boolean isRunning() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top