| title | weight | description | tags | ||
|---|---|---|---|---|---|
Deploy NetworkPolicy |
7 |
Duration: 5 min | Persona: Apps Operator |
|
In this section, you will deploy a granular and specific NetworkPolicy for the Whereami namespace. This will fix the policies violation you faced earlier. At the end you will catch another issue that you will resolve in the next section.
Initialize variables:
WORK_DIR=~/
source ${WORK_DIR}acm-workshop-variables.shDefine a fine granular NetworkPolicy:
cat <<EOF > ${WORK_DIR}$WHERE_AMI_DIR_NAME/base/networkpolicy_whereami.yaml
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: whereami
spec:
podSelector:
matchLabels:
app: whereami
policyTypes:
- Ingress
- Egress
ingress:
- from:
- namespaceSelector:
matchLabels:
name: ${INGRESS_GATEWAY_NAMESPACE}
podSelector:
matchLabels:
app: ${INGRESS_GATEWAY_NAME}
ports:
- port: 8080
protocol: TCP
egress:
- {}
EOFUpdate the Kustomize base overlay:
cd ${WORK_DIR}$WHERE_AMI_DIR_NAME/base
kustomize edit add resource networkpolicy_whereami.yamlcd ${WORK_DIR}$WHERE_AMI_DIR_NAME/
git add . && git commit -m "Whereami NetworkPolicy" && git push origin mainList the Kubernetes resources managed by Config Sync in GKE cluster for the Whereami app repository:
gcloud alpha anthos config sync repo describe \
--project $TENANT_PROJECT_ID \
--managed-resources all \
--sync-name repo-sync \
--sync-namespace $WHEREAMI_NAMESPACEWait and re-run this command above until you see "status": "SYNCED" for this RepoSync. All the managed_resources listed should have STATUS: Current as well.
List the GitHub runs for the Whereami app repository:
cd ${WORK_DIR}$WHERE_AMI_DIR_NAME && gh run listOpen the list of the Workloads deployed in the GKE cluster, you will now see that all the Online Boutique apps are working. Click on the link displayed by the command below:
echo -e "https://console.cloud.google.com/kubernetes/workload/overview?project=${TENANT_PROJECT_ID}"Navigate to the Whereami app, click on the link displayed by the command below:
echo -e "https://${WHERE_AMI_INGRESS_GATEWAY_HOST_NAME}"You should receive the error: RBAC: access denied. This is because the default deny-all AuthorizationPolicy has been applied to the entire mesh. In the next section you will apply a fine granular AuthorizationPolicy for the Whereami app in order to get it working.
