Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for WORKLOAD_SELECTOR (0.39 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-disable-port-mtls-strict.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 9090
          notPrincipals:
          - presence: {}
    name: converted_peer_authentication_disable-strict-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 203 bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-permissive-port-mtls-strict.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 9090
          notPrincipals:
          - presence: {}
    name: converted_peer_authentication_permissive-strict-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 206 bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-unset-port-mtls-strict.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 8080
          notPrincipals:
          - presence: {}
    name: converted_peer_authentication_strict-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 195 bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-and-disable-port-mtls.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - notPrincipals:
          - presence: {}
      - matches:
        - notDestinationPorts:
          - 9090
    name: converted_peer_authentication_strict-and-disable-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 223 bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-unset-port-mtls-permissive.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - notDestinationPorts:
          - 9090
    name: converted_peer_authentication_strict-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 156 bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/peer-authn-strict-and-permissive-port-mtls.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - notPrincipals:
          - presence: {}
      - matches:
        - notDestinationPorts:
          - 9090
    name: converted_peer_authentication_strict-and-permissive-mtls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 226 bytes
    - Viewed (0)
  7. pkg/workloadapi/security/authorization.proto

      GLOBAL = 0;
      // NAMESPACE means that the policy will only be applied to workloads in a
      // specific namespace.
      NAMESPACE = 1;
      // WORKLOAD_SELECTOR means that the policy will only be applied to specific
      // workloads that were selected by their labels.
      WORKLOAD_SELECTOR = 2;
    }
    
    enum Action {
      // Allow the request if it matches with the rules.
      ALLOW = 0;
      // Deny the request if it matches with the rules.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. architecture/ambient/peer-authentication.md

    groups:
    - rules:
      - matches:
        - notPrincipals:
          - presence: {}
    - rules:
      - matches:
        - notDestinationPorts:
          - 9090
    name: converted_peer_authentication_strict-and-permissive-mtls
    scope: WORKLOAD_SELECTOR
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pkg/workloadapi/security/authorization.pb.go

    	// specific namespace.
    	Scope_NAMESPACE Scope = 1
    	// WORKLOAD_SELECTOR means that the policy will only be applied to specific
    	// workloads that were selected by their labels.
    	Scope_WORKLOAD_SELECTOR Scope = 2
    )
    
    // Enum value maps for Scope.
    var (
    	Scope_name = map[int32]string{
    		0: "GLOBAL",
    		1: "NAMESPACE",
    		2: "WORKLOAD_SELECTOR",
    	}
    	Scope_value = map[string]int32{
    		"GLOBAL":            0,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top