HTTP Traffic
Before you begin this task, do the following:
Read the .
Follow the Istio installation guide to install Istio with mutual TLS enabled.
Deploy the sample application.
After deploying the Bookinfo application, go to the Bookinfo product page at http://$GATEWAY_URL/productpage
. On the product page, you can see the following sections:
- Book Details on the lower left side, which includes: book type, number of pages, publisher, etc.
- Book Reviews on the lower right of the page.
When you refresh the page, the app shows different versions of reviews in the product page. The app presents the reviews in a round robin style: red stars, black stars, or no stars.
This task requires mutual TLS enabled because the following examples use principal and namespace in the policies.
Using Istio, you can easily setup access control for workloads in your mesh. This task shows you how to set up access control using Istio authorization. First, you configure a simple allow-nothing
policy that rejects all requests to the workload, and then grant more access to the workload gradually and incrementally.
Run the following command to create a
allow-nothing
policy in thedefault
namespace. The policy doesn’t have aselector
field, which applies the policy to every workload in thedefault
namespace. Thespec:
field of the policy has the empty value{}
. That value means that no traffic is permitted, effectively denying all requests.Point your browser at the Bookinfo
productpage
(http://$GATEWAY_URL/productpage
). You should see"RBAC: access denied"
. The error shows that the configureddeny-all
policy is working as intended, and Istio doesn’t have any rules that allow any access to workloads in the mesh.Run the following command to create a
productpage-viewer
policy to allow access withGET
method to theproductpage
workload. The policy does not set thefrom
field in therules
which means all sources are allowed, effectively allowing all users and workloads:$ kubectl apply -f - <<EOF
apiVersion: security.istio.io/v1beta1
kind: AuthorizationPolicy
metadata:
name: "productpage-viewer"
namespace: default
spec:
selector:
app: productpage
action: ALLOW
rules:
- operation:
methods: ["GET"]
EOF
Point your browser at the Bookinfo
productpage
(http://$GATEWAY_URL/productpage
). Now you should see the “Bookinfo Sample” page. However, you can see the following errors on the page:Error fetching product details
Error fetching product reviews
on the page.
Run the following command to create the
details-viewer
policy to allow theproductpage
workload, which issues requests using thecluster.local/ns/default/sa/bookinfo-productpage
service account, to access thedetails
workload throughGET
methods:Run the following command to create a policy
reviews-viewer
to allow theproductpage
workload, which issues requests using thecluster.local/ns/default/sa/bookinfo-productpage
service account, to access thereviews
workload throughGET
methods:$ kubectl apply -f - <<EOF
apiVersion: security.istio.io/v1beta1
kind: AuthorizationPolicy
metadata:
name: "reviews-viewer"
namespace: default
spec:
matchLabels:
action: ALLOW
rules:
- from:
- source:
principals: ["cluster.local/ns/default/sa/bookinfo-productpage"]
to:
- operation:
methods: ["GET"]
EOF
Point your browser at the Bookinfo
productpage
(http://$GATEWAY_URL/productpage
). Now, you should see the “Bookinfo Sample” page with “Book Details” on the lower left part, and “Book Reviews” on the lower right part. However, in the “Book Reviews” section, there is an errorRatings service currently unavailable
.This is because the
reviews
workload doesn’t have permission to access theratings
workload. To fix this issue, you need to grant thereviews
workload access to theratings
workload. Next, we configure a policy to grant thereviews
workload that access.Run the following command to create the
ratings-viewer
policy to allow thereviews
workload, which issues requests using thecluster.local/ns/default/sa/bookinfo-reviews
service account, to access theratings
workload throughGET
methods:Point your browser at the Bookinfo
productpage
(http://$GATEWAY_URL/productpage
). You should see the “black” and “red” ratings in the “Book Reviews” section.
Remove all authorization policies from your configuration:
$ kubectl delete authorizationpolicy.security.istio.io/allow-nothing
$ kubectl delete authorizationpolicy.security.istio.io/productpage-viewer
$ kubectl delete authorizationpolicy.security.istio.io/details-viewer
$ kubectl delete authorizationpolicy.security.istio.io/reviews-viewer
$ kubectl delete authorizationpolicy.security.istio.io/ratings-viewer