docker run on pwd
JavaScript implementation of HAL format
A board game
Checks id of a GitHub user (or deploy key) via ssh key signing
nothing to see here, for now
JavaScript Cryptographic Library with performance in mind.
nothing to see here
fork jpbochi/keybase-gpg-github
Step-by-step guide on how to create a GPG key on keybase.io, adding it to a local GPG setup and use it with Git and GitHub.
fork in 9 days
push eventjpbochi/cv
commit sha 89271e24aae53779c3f07abd55da2a54b291a4e1
Add back link to bitbucket.org/jpbochi/jplabscode
push time in a month
push eventjpbochi/cv
commit sha cbc5972d5e2e06f77e3b37f50de555cf14a8f9cf
Add link to missing bitbucket repos
push time in a month
push eventjpbochi/cv
commit sha 398ddc15bb84417ac0d307849856891d05faea26
Put Rackspace in the past; save links for the future
push time in a month
push eventjpbochi/cv
commit sha 70ded9abbf14d23058de0c8f92f728dfed7c018f
Update introduction, inverted order of companies, clean up text overall
push time in a month
push eventjpbochi/cv
commit sha d8ed9902e313edb372bf7702c4153267a7b98a06
Update wkhtmltopdf image
commit sha 51026f1731dfa1a149d32c682b998a9410aadc6d
Update drun on Makefile
commit sha 83be666f0df6c2ed6bd0523d3d6c786fc09c8342
Update node to 14, and update dependencies
push time in a month
startedlhunath/bash.academy
started time in 3 months
issue commentkubernetes/kubernetes
@agniveshadhikari I ran into the same problem. As it turns out, there was an instance of challenges.acme.cert-manager.io that was still pending. I tried a simple delete on that resource, but this command also got stuck.
Then, I tried this trick:
-
Either run this:
kubectl proxy &or run this is a separate shell session / terminal tab:kubectl proxy -
Get a json with the resource you want to delete, for example:
kubectl get challenges.acme.cert-manager.io quickstart-example-tls-1016717128-3781756796-4176224615 -o json > bad.json -
Make a PUT call removing any finalizer
cat bad.json | jq '. | setpath(["metadata","finalizers"]; [])' | curl -kD- -H "Content-Type: application/json" -X PUT --data-binary @- "127.0.0.1:8001$(cat bad.json | jq -r '.metadata.selfLink')"
comment created time in 3 months