blob: 362870880962513b972090c4a657107d950182bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
host=$1
function oc {
cfg="../security/$host.kubeconfig"
/usr/bin/oc --config "$cfg" "$@"
}
function node {
ip=$1
shift
ssh -xq root@192.168.26.$ip "$@"
}
function get_gluster_pod {
oc -n glusterfs get pods -l 'glusterfs=storage-pod' | grep Running | awk '{ print $1 }' | head -n 1
}
function heketi {
node 1 heketi-cli -s http://heketi-storage.glusterfs.svc.cluster.local:8080 --user admin --secret "$(oc get secret heketi-storage-admin-secret -n glusterfs -o jsonpath='{.data.key}' | base64 -d)" "$@"
}
|