mirror of
https://github.com/dredx/prole.git
synced 2026-09-27 07:14:29 +00:00
12 lines
310 B
Bash
Executable File
12 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
export PROLE_HOME=$HOME/dev/prole
|
|
PROLE_PASSWD=`cat $PROLE_HOME/prole-db/.prole_user_password | base64 -d`
|
|
HOST_IP=`ifconfig en0 | grep 'inet ' | awk '{print $2}'`
|
|
|
|
NODE_TOKEN=$( docker exec k3d-prole-service-cluster-server-0 cat /var/lib/rancher/k3s/server/node-token )
|
|
|
|
echo $NODE_TOKEN
|