# Support FAQs
:::info
:bulb: Some things to check after following install steps. Use this to verify setup.
:::
## QuicMesh Demo of mTLS
### 1. Verify the bookstore service is running
```
kubectl get svc -n bookstore
```
Check the configmap entrires exist
```
kubectl get cm bookstore-qm -n bookstore -o jsonpath='{.data.config\.json}' | jq
```
expected results:
:::info
output should show ...
:::
Some things to try based on the output
- ?
- ?
### 2. Verify the quicmesh-operator running
Get its logs here
```
kubectl get logs quicmesh-operator
```
expected results:
:::info
output should show ...
:::
Some things to try based on the output
- ?
- ?
# Ricks Environment
## Service
```
% kubectl get svc -n bookstore
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
bookstore-qm NodePort 10.100.77.32 <none> 8443:30113/TCP,8443:30113/UDP 14m
endpointset-replicaset-bookstore-v1-5955fb5b9d NodePort 10.100.127.184 <none> 8443:32169/UDP 14m
endpointset-replicaset-bookstore-v1-9dff9968f NodePort 10.100.126.8 <none> 8443:30821/UDP 14m
```
## ConfigMap
```
% kubectl get cm bookstore-qm -n bookstore -o jsonpath='{.data.config\.json}' | jq
{
"version": "v1alpha1",
"qm_service_conf": [
{
"server_instance_key": "172.16.6.227",
"enable_quicmesh": true,
"server_id": "00000001",
"redirect_rules": [
"00000001-172.16.6.227:8443|100"
],
"server_spa": {
"server_spa_addr": "172.16.6.227",
"server_spa_port": "8443"
},
"authz_rules": [
"spiffe://cluster.local/ns/bookbuyer/sa/bookbuyer",
"administration.http3.page"
],
"conn_id_len": "20",
"redirect": true,
"client_cert": false,
"new_field": true
}
]
}
```