How Kuma chooses the right policy to apply

    E.g., there might be a catch-all policy that sets the baseline for your organization

    Additionally, there might be a more focused use case-specific policy, e.g.

    1. type: TrafficLog
    2. mesh: default
    3. name: web-to-backend-policy
    4. sources:
    5. - match:
    6. kuma.io/service: web
    7. cloud: aws
    8. region: us
    9. destinations:
    10. - match:
    11. kuma.io/service: backend
    12. conf:
    13. backend: splunk

    What does Kuma do when it encounters multiple matching policies?

    Kuma always picks the most specific policy

    1. A policy that matches by a greater number of tags

      1. - match:
      2. kuma.io/service: '*'
      3. cloud: aws
      4. region: us

      is “more specific” than the one with the less number of tags

      1. - match:
      2. kuma.io/service: '*'
    2. A policy that matches by the exact tag value

      1. - match:
      2. kuma.io/service: web
      1. - match:
      2. kuma.io/service: '*'
    3. If 2 policies match by the same number of tags, then the one with a greater total number of matches by the exact tag value

      is “more specific” than the other

      1. - match:
      2. kuma.io/service: web
      3. version: '*'
    4. If 2 policies are equal (match by the same number of tags, and the total number of matches by the exact tag value is the same for both policies, and the total number of matches by a '*' tag value is the same for both policies) then the latest one

      1. modificationTime: "2020-01-01T20:00:00.0000Z"
      2. ...
      3. - match:
      4. kuma.io/service: web

      is “more specific” policy than the older one

      1. modificationTime: "2019-01-01T20:00:00.0000Z"
      2. ...
      3. - match:
      4. kuma.io/service: web
      5. cloud: aws

    Dataplane policy is a policy that matches group of data plane proxies, not a connection between multiple proxies.

    Assuming we have the following data plane proxy

    1. type: Dataplane
    2. name: web-1
    3. networking:
    4. address: 192.168.0.1
    5. inbound:
    6. - port: 9000
    7. servicePort: 6379
    8. tags:
    9. kuma.io/service: web

    and a ProxyTemplate which is an example of a Dataplane Policy

    1. type: ProxyTemplate
    2. mesh: default
    3. name: custom-template-1
    4. selectors:
    5. - match:
    6. kuma.io/service: web
    7. conf:
    8. imports:
    9. - default-proxy

    The policy can be applied either on inbound connections that a data plane proxy receives or outbound connections that data plane proxy creates, therefore there are two types of connection policies.

    This kind of policy is enforced on the outbound connections initiated by the data plane proxy defined in sources section and then is applied only if the target data plane proxy matches tags defined in destination.

    Assuming we have the following data plane proxies:

    1. type: Dataplane
    2. mesh: default
    3. name: backend-1
    4. networking:
    5. address: 192.168.0.2
    6. inbound:
    7. - port: 9000
    8. servicePort: 6379
    9. tags:
    10. kuma.io/service: backend

    and a HealthCheck which is an example of Outbound Connection Policy

    1. type: HealthCheck
    2. mesh: default
    3. name: catch-all-policy
    4. sources:
    5. - match:
    6. destinations:
    7. - match:
    8. kuma.io/service: backend

    then the health checking is applied only on the first outbound listener of the web-1 data plane proxy. The configuration of data plane proxy is not changed in any way.

    This kind of policy is enforced on the inbound connections received by the data plane proxy defined in destination section and then is applied only if the data plane proxy that initiated this connection matches tags defined in sources.

    Assuming we have the following data plane proxies:

    1. type: Dataplane
    2. mesh: default
    3. name: web-1
    4. networking:
    5. address: 192.168.0.1
    6. inbound:
    7. - port: 9000
    8. servicePort: 6379
    9. tags:
    10. kuma.io/service: web
    11. outbound:
    12. - port: 1234
    13. tags:
    14. kuma.io/service: backend
    1. type: Dataplane
    2. mesh: default
    3. name: backend-1
    4. networking:
    5. address: 192.168.0.2
    6. inbound:
    7. - port: 9000
    8. servicePort: 6379
    9. tags:
    10. kuma.io/service: backend
    11. - port: 9000
    12. servicePort: 6379
    13. tags:
    14. kuma.io/service: backend-api
    1. type: TrafficPermission
    2. mesh: default
    3. name: catch-all-policy
    4. sources:
    5. - match:
    6. kuma.io/service: web
    7. destinations:
    8. - match:

    then the TrafficPermission is enforced only on the first inbound listener of the backend-1 data plane proxy. The configuration of data plane proxy is not changed in any way.