You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* APISIX doc update
Signed-off-by: Andy Tael <[email protected]>
* APISIX update and Docusaurus new version
Signed-off-by: Andy Tael <[email protected]>
---------
Signed-off-by: Andy Tael <[email protected]>
To access the APISIX APIs, you need the admin key. Retrieve it with the following command (replace the example namespace `obaas-dev` with the namespace where APISIX is deployed):
1. Run: `kubectl get configmap apisix -n obaas-dev -o yaml`
38
+
1. Look for the `config.yaml` section
39
+
1. Find `deployment.admin.admin_key` and copy the key value
40
+
31
41
Test the admin key by running a simple curl command; it should return the list of configured routes.
32
42
33
43
```shell
34
44
curl http://127.0.0.1:9180/apisix/admin/routes -H "X-API-key: $admin_key" -X GET
35
45
```
46
+
47
+
### Accessing APISIX Dashboard
48
+
49
+
:::note
50
+
Note that all functionality is not available in the dashboard. You might need to use the REST APIs
51
+
:::
52
+
53
+
APISIX has an embedded dashboard that can be accessed after a tunnel is established to the `apisix-admin` service. The dashboard is available on this [URL](http://localhost:8190/ui). **NOTE:** you need the Admin key to be able to access the dashboard.
54
+
55
+

56
+
57
+
### Configuring APISIX using REST APIs
58
+
59
+
You can configure and update the APISIX gateway using the provided APIs. [API Documentation](https://apisix.apache.org/docs/apisix/getting-started/README/)
0 commit comments