akalittle

Results 13 issues of akalittle

Here is http server code I set http.timeout to 1s ```go func NewHTTPServer( c *conf.Server, txStatus *service.TxStatusService, logger log.Logger, ) *http.Server { var opts = []http.ServerOption{ http.Middleware( recovery.Recovery(), metrics.Server( metrics.WithSeconds(prom.NewHistogram(&prometheus2.MetricSeconds)),...

question

### Issue description Follow the doc in [ApisixRoute CRD](https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixRoute.yaml#L226) ```yaml apiVersion: apisix.apache.org/v2beta3 kind: ApisixRoute metadata: name: status-tracker namespace: launcher spec: http: - name: status-tracker-rule match: hosts: - api.xxx.cc paths: -...

question
checking

### Issue description [Use GraphQL with API Gateway Apache APISIX](https://apisix.apache.org/blog/2022/03/02/apisix-integration-graphql-plugin/#specific-configuration) In the post, you use a http request to specific the graphql request. But How can I do this via...

question

### Description Here below is my yaml file of CRD `ApisixRoute` I want to implement keyAuth but some path will should be excluded to the keyAuth But the config below...

question

Hey, If I use helm template generated yamls to deploy. How can I set all the attributes needed in `values.yaml` ?

### Description We have some dashboards and monitoring systems and the systems need a username & password to log in. But we want to log in to all the systems...

**Describe the bug** I use the code generated by `goctl model pg datasource -url="postgresql://postgres@localhost:5432/postgres?sslmode=disable" -table="xxx" -c` the ddl is below and there is a `unique index` ``` CREATE TABLE tx_status...

### Issue description [ApisixConsumer CRD](https://github.com/apache/apisix-ingress-controller/blob/master/samples/deploy/crd/v1/ApisixConsumer.yaml) ```yaml apiVersion: apisix.apache.org/v2beta3 kind: ApisixConsumer metadata: name: test-consumer namespace: apisix-istio spec: authParameter: keyAuth: value: key: j5giofawfk9OtR6pVvYz # plugins: # - ``` Is there a way...

enhancement
triage/accepted

``` shell helm pull apisix/apisix -d . ``` after untar the the files below ```markdown . ├── Chart.lock ├── Chart.yaml ├── README.md ├── charts │   ├── apisix-dashboard │   ├── apisix-ingress-controller...

If I have a table like: ```go type Demo struct { ID int64 `json:"id" gorm:"primaryKey;column:id;type:integer"` Name string `json:"name" gorm:"type:VARCHAR;not null;default:''"` Type int8 `json:"type" gorm:"type:integer;default:1"` IsUniversal int8 `json:"is_universal" gorm:"type:integer;default:1"` } ```...