Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for ServiceName (0.17 sec)

  1. tests/integration/security/testdata/authz/plaintext.yaml.tmpl

    # mTLS is required in order to match source principals.
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: {{ .To.ServiceName }}
      namespace: {{ .To.NamespaceName }}
    spec:
      selector:
        matchLabels:
          "app": "{{ .To.ServiceName }}"
      action: DENY
      rules:
        - from:
            - source:
                notPrincipals: [ "*" ]
    
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 1.3K 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. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/statefulsetspec.go

    }
    
    // WithServiceName sets the ServiceName field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the ServiceName field is set to the value of the last call.
    func (b *StatefulSetSpecApplyConfiguration) WithServiceName(value string) *StatefulSetSpecApplyConfiguration {
    	b.ServiceName = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top