The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
2g1c | |
2 girls 1 cup | |
4r5e | |
anal | |
anus | |
arse | |
ass | |
asses | |
assfucker | |
assfukka |
import Vue from 'vue'; | |
Vue.component('v-alert', {}); | |
Vue.component('v-app', {}); | |
Vue.component('v-autocomplete', {}); | |
Vue.component('v-avatar', {}); | |
Vue.component('v-badge', {}); | |
Vue.component('v-bottom-nav', {}); | |
Vue.component('v-bottom-sheet', {}); | |
Vue.component('v-breadcrumbs', {}); |
#!/bin/sh | |
# based on https://gist.github.com/ipedrazas/9c622404fb41f2343a0db85b3821275d | |
# delete all evicted pods from all namespaces | |
kubectl get pods --all-namespaces | grep Evicted | awk '{print $2 " --namespace=" $1}' | xargs kubectl delete pod | |
# delete all containers in ImagePullBackOff state from all namespaces | |
kubectl get pods --all-namespaces | grep 'ImagePullBackOff' | awk '{print $2 " --namespace=" $1}' | xargs kubectl delete pod | |
# delete all containers in ImagePullBackOff or ErrImagePull or Evicted state from all namespaces |