Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 348 for ServiceName (1.62 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/networking.k8s.io.v1beta1.Ingress.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.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)
  3. staging/src/k8s.io/api/testdata/v1.30.0/networking.k8s.io.v1beta1.Ingress.yaml

          kind: kindValue
          name: nameValue
        serviceName: serviceNameValue
        servicePort: servicePortValue
      ingressClassName: ingressClassNameValue
      rules:
      - host: hostValue
        http:
          paths:
          - backend:
              resource:
                apiGroup: apiGroupValue
                kind: kindValue
                name: nameValue
              serviceName: serviceNameValue
              servicePort: servicePortValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. tests/integration/security/testdata/requestauthn/remote.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "{{ .JWTServer.JwksURI }}"
        outputPayloadToHeader: "x-test-payload"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 338 bytes
    - Viewed (0)
  5. tests/integration/security/testdata/requestauthn/forward.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"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 393 bytes
    - Viewed (0)
  6. tests/integration/security/testdata/authz/path-normalization.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      rules:
      - to:
        - operation:
            paths: ["/public*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 263 bytes
    - Viewed (0)
  7. tests/integration/security/testdata/authz/not-namespace.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}-deny
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: DENY
      rules:
        - from:
          - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 293 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication.go

    				}
    				return ret, nil
    			},
    			ClientConfigForServiceFunc: func(serviceName, serviceNamespace string, servicePort int) (*rest.Config, error) {
    				if serviceName == "kubernetes" && serviceNamespace == corev1.NamespaceDefault && servicePort == 443 {
    					return kubeapiserverClientConfig, nil
    				}
    				ret, err := delegate.ClientConfigForService(serviceName, serviceNamespace, servicePort)
    				if err != nil {
    					return nil, err
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. tests/integration/security/testdata/requestauthn/timeout.yaml.tmpl

    apiVersion: security.istio.io/v1beta1
    kind: RequestAuthentication
    metadata:
      name: {{ .To.ServiceName }}
    spec:
      selector:
        matchLabels:
          app: {{ .To.ServiceName }}
      jwtRules:
      - issuer: "******@****.***"
        jwksUri: "{{ .JWTServer.JwksURI }}?delay=500ms"
        outputPayloadToHeader: "x-test-payload"
        forwardOriginalToken: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 23:24:31 UTC 2024
    - 370 bytes
    - Viewed (0)
  10. tests/integration/security/jwt_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
    - 25.3K bytes
    - Viewed (0)
Back to top