-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path#k8sliners
61 lines (53 loc) · 1.4 KB
/
#k8sliners
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
irm http://localhost:15000/logging -Method post
kubectl run -it --rm --generator=run-pod/v1 aks-ssh --image=alpine --labels=app=aksssh
# second terminal
kubectl exec aks-ssh -c aks-ssh -- apk update
kubectl exec aks-ssh -c aks-ssh -- apk add openssh-client bash
kubectl cp ~/.ssh/id_rsa aks-ssh:/id_rsa
kubectl exec aks-ssh -c aks-ssh chmod 0600 id_rsa
ssh -i id_rsa username@ipaddress
* do stuff *
scp -i id_rsa username@ipaddress:~/host.file ./pod.file
kubectl cp aks-ssh:pod.file ~/local.file
( kgaj po | cfj ).items.where{ $_.status.phase -ne 'running' }.metadata.foreach{ kr po -n $_.namespace $_.name }
# sleep pod
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
labels:
run: test
name: test
spec:
selector:
matchLabels:
run: test
template:
metadata:
labels:
run: test
spec:
containers:
- args:
- -ec
- sleep 1000
command:
- /bin/sh
image: byrnedo/alpine-curl
imagePullPolicy: Always
# strace sidecar
- args:
- -ec
- sleep 100000
command:
- /bin/sh
image: ubuntu
imagePullPolicy: Always
name: shell
resources: {}
securityContext:
capabilities:
add:
- SYS_PTRACE
readOnlyRootFilesystem: false
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File