matteosilv

Results 48 comments of matteosilv

This works for me in swagger core 2.0.6: public MyResponse myMethod(@RequestBody(description = "test body", content = { @Content(mediaType = "application/json", examples = @ExampleObject( name = "test", summary = "test example",...

Can somebody help me understend why e2e tests are failing after I uploaded the api-report.md?

> Thanks for the PR! We had some build issues last week and had to force push to the mater branch in order to clear up the issues. Rebase your...

Hopefully now everything works, but I had to add: ```json "devDependencies": { ... "@types/js-yaml": "^4.0.5", ... "@types/request": "^2.48.8" }, ``` to packages/create-app/templates/default-app/packages/backend/package.json.hbs

> Hi @matteosilv! > > It looks like this is due to an underlying issue in the Kubernetes client library for javascript. There's currently an open issue in [kubernetes-client/javascript#883](https://github.com/kubernetes-client/javascript/issues/883) describing...

Something is moving 😄 https://github.com/kubernetes-client/javascript/pull/890

> [kubernetes-client/javascript#890](https://github.com/kubernetes-client/javascript/pull/890) was merged so this should be addressed with next release We need to wait for 0.17.2 and merge after then! Thanks!

The problem is outlined here too https://github.com/kubernetes-client/javascript/issues/864#issuecomment-1243216296

Hi guys, I wrote significant tests by expecting a [KinD](https://kind.sigs.k8s.io/docs/user/quick-start/) Kubernetes cluster to be available in the CI. Is it possible to bootstrap it in github actions, or can I...

If I can just create a new workflow it would be fine, I could do something like: curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.14.0/kind-linux-amd64 chmod +x ./kind ./kind create cluster yarn install yarn...