Baoyuantop commented on issue #213:
URL:
https://github.com/apache/apisix-helm-chart/issues/213#issuecomment-4205374812
To access the APISIX Dashboard, you can:
1. **Change the Service type** in the dashboard chart's `values.yaml` (line
130-134):
```yaml
service:
type: NodePort # or LoadBalancer
port: 80
```
2. **Use kubectl port-forward**:
```bash
kubectl port-forward svc/apisix-dashboard -n your-namespace 9000:80
```
Then access `http://localhost:9000` in your browser.
3. **Enable Ingress** for the dashboard (dashboard values.yaml lines
136-158):
```yaml
ingress:
enabled: true
hosts:
- host: dashboard.example.com
paths:
- path: /
pathType: ImplementationSpecific
```
Default credentials are `admin`/`admin` (configurable in dashboard
values.yaml lines 120-128).
Closing as this is a usage question. If you still need help, please feel
free to reopen.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]