Dry Run

    The dry-run annotation allows you to better understand the effect of an authorization policy before applying it to the production traffic. This helps to reduce the risk of breaking the production traffic caused by an incorrect authorization policy.

    The following information describes an experimental feature, which is intended for evaluation purposes only.

    Before you begin this task, do the following:

    • Read the .

    • Follow the Istio installation guide to install Istio.

    • Deploy Zipkin for checking dry-run tracing results. Follow the to install Zipkin in the cluster.

    • Deploy Prometheus for checking dry-run metric results. Follow the Prometheus task to install the Prometheus in the cluster.

    • Deploy test workloads:

      This task uses two workloads, and sleep, both deployed in namespace foo. Both workloads run with an Envoy proxy sidecar. Create the foo namespace and deploy the workloads with the following command:

      Zip

    • Enable proxy debug level log for checking dry-run logging results:

      1. $ istioctl proxy-config log deploy/httpbin.foo --level "rbac:debug" | grep rbac
      2. rbac: debug
    • Verify that sleep can access httpbin with the following command:

      1. $ kubectl exec "$(kubectl get pod -l app=sleep -n foo -o jsonpath={.items..metadata.name})" -c sleep -n foo -- curl http://httpbin.foo:8000/ip -s -o /dev/null -w "%{http_code}\n"
      2. 200

    If you don’t see the expected output as you follow the task, retry after a few seconds. Caching and propagation overhead can cause some delay.

    Create dry-run policy

      1. $ kubectl apply -n foo -f - <<EOF
      2. apiVersion: security.istio.io/v1beta1
      3. metadata:
      4. name: deny-path-headers
      5. annotations:
      6. "istio.io/dry-run": "true"
      7. spec:
      8. matchLabels:
      9. app: httpbin
      10. action: DENY
      11. rules:
      12. - to:
      13. - operation:
      14. paths: ["/headers"]
      15. EOF

      You can also use the following command to quickly change an existing authorization policy to dry-run mode:

    1. Verify a request to path /headers is allowed because the policy is created in dry-run mode, run the following command to send 20 requests from sleep to httpbin, the request includes the header X-B3-Sampled: 1 to always trigger the Zipkin tracing:

      1. $ for i in {1..20}; do kubectl exec "$(kubectl get pod -l app=sleep -n foo -o jsonpath={.items..metadata.name})" -c sleep -n foo -- curl http://httpbin.foo:8000/headers -H "X-B3-Sampled: 1" -s -o /dev/null -w "%{http_code}\n"; done
      2. 200
      3. 200
      4. 200
      5. ...
    1. The dry-run results can be found in the proxy debug log in the format of shadow denied, matched policy ns[foo]-policy[deny-path-headers]-rule[0]. Run the following command to check the log:

      1. 2021-11-19T20:21:45.502199Z debug envoy rbac shadow denied, matched policy ns[foo]-policy[deny-path-headers]-rule[0]
      2. 2021-11-19T20:22:33.065348Z debug envoy rbac shadow denied, matched policy ns[foo]-policy[deny-path-headers]-rule[0]
      3. ...

      Also see the for more details of the logging.

    Check dry-run result in metric using Prometheus

    1. Open the Prometheus dashboard with the following command:

      1. $ istioctl dashboard prometheus
    2. In the Prometheus dashboard, search for the following metric:

    3. Verify the queried metric result as follows:

      1. envoy_http_inbound_0_0_0_0_80_rbac{app="httpbin",authz_dry_run_action="deny",authz_dry_run_result="denied",instance="10.44.1.11:15020",istio_io_rev="default",job="kubernetes-pods",kubernetes_namespace="foo",kubernetes_pod_name="httpbin-74fb669cc6-95qm8",pod_template_hash="74fb669cc6",security_istio_io_tlsMode="istio",service_istio_io_canonical_name="httpbin",service_istio_io_canonical_revision="v1",version="v1"} 20
    4. The queried metric has value 20 (you might find a different value depending on how many requests you have sent. It’s expected as long as the value is greater than 0). This means the dry-run policy applied to the httpbin workload on port 80 matched one request. The policy would reject the request once if it was not in dry-run mode.

    5. The following is a screenshot of the Prometheus dashboard:

      Prometheus dashboard

    1. Open the Zipkin dashboard with the following command:

      1. $ istioctl dashboard zipkin
    2. Find the trace result for the request from sleep to httpbin. Try to send some more requests if you do see the trace result due to the delay in the Zipkin.

      1. istio.authorization.dry_run.deny_policy.name: ns[foo]-policy[deny-path-headers]-rule[0]
      2. istio.authorization.dry_run.deny_policy.result: denied
    3. The following is a screenshot of the Zipkin dashboard:

      Zipkin dashboard

    Summary

    The Proxy debug log, Prometheus metric and Zipkin trace results indicate that the dry-run policy will reject the request. You can further change the policy if the dry-run result is not expected.

    It’s recommended to keep the dry-run policy for some additional time so that it can be tested with more production traffic.

    When you are confident about the dry-run result, you can disable the dry-run mode so that the policy will start to actually reject requests. This can be achieved by either of the following approaches:

    • Remove the dry-run annotation completely; or

    • Change the value of the dry-run annotation to false.

    The dry-run annotation is currently in experimental stage and has the following limitations:

    • The dry-run annotation currently only supports ALLOW and DENY policies;

    • There will be two separate dry-run results (i.e. log, metric and tracing tag) for ALLOW and DENY policies due to the fact that the ALLOW and DENY policies are enforced separately in the proxy. You should take all the two dry-run results into consideration because a request could be allowed by an ALLOW policy but still rejected by another DENY policy;

    • The dry-run results in the proxy log, metric and tracing are for manual troubleshooting purposes and should not be used as an API because it may change anytime without prior notice.

    Clean up