This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (dlv) threads | |
| Thread 1 at 0x464d07 .usr/local/go/src/runtime/sys_linux_amd64.s:95 runtime.usleep | |
| Thread 7 at 0x465123 .usr/local/go/src/runtime/sys_linux_amd64.s:388 runtime.futex | |
| Thread 8 at 0x464d07 .usr/local/go/src/runtime/sys_linux_amd64.s:95 runtime.usleep | |
| Thread 9 at 0x465123 .usr/local/go/src/runtime/sys_linux_amd64.s:388 runtime.futex | |
| Thread 10 at 0x464d07 .usr/local/go/src/runtime/sys_linux_amd64.s:95 runtime.usleep | |
| Thread 11 at 0x465123 .usr/local/go/src/runtime/sys_linux_amd64.s:388 runtime.futex | |
| Thread 12 at 0x464d07 .usr/local/go/src/runtime/sys_linux_amd64.s:95 runtime.usleep | |
| Thread 13 at 0x464d07 .usr/local/go/src/runtime/sys_linux_amd64.s:95 runtime.usleep | |
| Thread 14 at 0x465237 .usr/local/go/src/runtime/sys_linux_amd64.s:479 runtime.osyield |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (dlv) goroutines | |
| [79 goroutines] | |
| Goroutine 1 - User: .go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/pkg/proxy/iptables/proxier.go:421 k8s.io/kubernetes/pkg/proxy/iptables.(*Proxier).SyncLoop (0xdd5f7e) | |
| Goroutine 2 - User: .usr/local/go/src/runtime/proc.go:260 runtime.gopark (0x43307a) | |
| Goroutine 3 - User: .usr/local/go/src/runtime/proc.go:260 runtime.gopark (0x43307a) | |
| Goroutine 4 - User: .usr/local/go/src/runtime/proc.go:2524 runtime.exitsyscall (0x4394d4) | |
| Goroutine 17 - User: .usr/local/go/src/runtime/asm_amd64.s:2087 runtime.goexit (0x464081) | |
| Goroutine 18 - User: .usr/local/go/src/runtime/proc.go:260 runtime.gopark (0x43307a) | |
| Goroutine 19 - User: .go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/vendor/github.com/golang/glog/glog.go:879 k8s.io/kubernetes/vendor/github.com/golang/glog.(*loggingT).flushDaemon (0x56a331) | |
| Goroutine 20 - User: .usr/local/go/src/runtime/proc.go:260 runtime.gopark (0x43307a) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ivan4th@ivan4th:~/work/kubernetes/src/k8s.io/kubernetes (fix-kubectl-apply-for-init-containers *%) $ git diff | |
| diff --git a/pkg/kubectl/apply.go b/pkg/kubectl/apply.go | |
| index 6f183f1..7bad4ae 100644 | |
| --- a/pkg/kubectl/apply.go | |
| +++ b/pkg/kubectl/apply.go | |
| @@ -19,6 +19,7 @@ package kubectl | |
| import ( | |
| "encoding/json" | |
| + "fmt" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ivan4th@ivan4th:~/work/kubernetes/src/k8s.io/kubernetes (fix-kubectl-apply-for-init-containers *%) $ cat ~/work/ictest1.yaml | |
| apiVersion: v1 | |
| kind: Pod | |
| metadata: | |
| name: nginx | |
| labels: | |
| app: nginx | |
| annotations: | |
| pod.alpha.kubernetes.io/init-containers: "[{\"name\":\"wait\",\"image\":\"ubuntu:16.04\",\"command\":[\"/bin/sh\",\"-c\",\"sleep 10\"]}]" | |
| spec: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -u -e | |
| exec >> /tmp/conncheck.log | |
| exec 2>&1 | |
| router_ip="192.168.20.1" | |
| ping_ip="8.8.8.8" | |
| admin_pw="$(echo '.....insert base64 encoded pw here .....'|base64 -d)" | |
| check_interval=300 | |
| recheck_count=10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # http://code-and-hacks.peculier.com/articles/setting-terminal-title-in-gnu-screen/ | |
| function settitle () { | |
| if [ "$TERM" != "screen" ]; then | |
| return | |
| fi | |
| if [ -n "$STY" ] ; then | |
| # We are in a screen session | |
| # echo "Setting screen titles to $@" | |
| printf "\033k%s\033\\" "$@" | |
| # screen -X eval "at \\# title $@" "shelltitle $@" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defscrollback 10000 | |
| termcapinfo xterm|xterms|xs|rxvt ti@:te@ | |
| startup_message off | |
| hardstatus alwayslastline | |
| hardstatus string '%{= kK}%-Lw%{= KW}%50>%n%f* %t%{= kK}%+Lw%< %{= kG}%-=%D %d %M %Y %c%{-}' | |
| altscreen on | |
| # screen -t server 0 /home/ivan4th/work/cms/run-server.sh | |
| # screen -t swank-js 1 /home/ivan4th/bin/run-swank-js.sh | |
| # screen -t ipython 3 ipython | |
| # screen -t htop 0 htop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (require 'ido) | |
| (provide 'my-jabber-chat-with) | |
| (defvar *my-jid-history* '()) | |
| (defun my-jabber-read-jid-completing (prompt) | |
| (let* ((hist-items (remove-duplicates *my-jid-history* :test #'equal)) | |
| (choices | |
| (mapcar #'symbol-name (jabber-concat-rosters)))) | |
| (setf choices (append hist-items |
NewerOlder