Gaston Festari

Results 51 comments of Gaston Festari

Thanks for this - tossing in another possible scenario for the `module.exports`: ```javascript exports = module.exports = /**/; ``` LMK if there's anything I can do

Just got bit by the same issue. Not having at least a warning on the docs or troubleshooting docs made things unnecessarily complicated. Having tolerations for every taint should be...

Seeing something similar with Slack: ``` level=error msg="could not send notification via notifier" error="got status 404, expected 200/201" notification name="update resource" sender name=webhook ``` Notification _does go through_ and I...

Disregard my comment - turned out I had misconfigured the webhook relay and that was the root cause of the 404 ^

Resurrecting this a bit, since I've got a similar use case. Seems the [webhook payloads][0] from Docker Hub include a `push_data.pushed_at` posix that can be used for comparison [0]: https://docs.docker.com/docker-hub/webhooks/#example-webhook-payload

this is also relevant since v2beta2 allows specifying multiple metrics for the HPA to scale on. Right now we're constrained to a single metric.

@dgradl you can try removing the existing modules and lockfile `rm -r node_modules yarn.lock` and then reinstalling. That should update the deps that are reporting the vulns. Also, you can...

We've been using this to automate k8s and Docker deployments: https://github.com/liyuntao/kong-init Needs a bit more spit and polish, but the maintainer has been awesome handling contributions.

Was running into this issue in Kubernetes, solved by adding a [`securityContext`](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod) to my deployment: ```yaml securityContext: fsGroup: 2000 ```

Running into the same issue - @siimon could you point me to any places I should look for in order to submit a patch?