This commit is contained in:
Xavier Pillons 2021-02-12 08:51:39 +00:00
Родитель 46f0260fe5
Коммит d8ce1edc22
2 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -96,14 +96,15 @@ ssh -L 9443:ccportal:9443 -i hpcadmin_id_rsa hpcadmin@$jb_ip
# Browse to the cycle UI
https://localhost:9443
# Connect with hpcadmin/<password generated>
# Connect to Cycle with the **hpcadmin** user
# Read the secret generated and stored into the key vault by running the helper command
./bin/get_secret hpcadmin
#In the inventory file, locate the ondemand_fqdn variable, browse to this URI
#Connect with your user account and the password located in the inventory file
grep ondemand_fqdn playbooks/group_vars/all.yml
#Connect with your one of the user account defined in the config.yml file
grep ondemand_fqdn playbooks/group_vars/all.yml
./bin/get_secret <user>
# To access the grafana dashboard, browse to https://<ondemand_fqdn>/rnode/jumpbox/3000/

Просмотреть файл

@ -50,8 +50,8 @@ case $COMMAND in
chmod 600 ${ADMIN_USER}_id_rsa
chmod 644 ${ADMIN_USER}_id_rsa.pub
# Add chmod+x on scripts
if [ -d /bin ]; then
chmod +x /bin/*
if [ -d ./bin ]; then
chmod +x ./bin/*
fi
fi
;;