22 lines
574 B
Bash
Executable File
22 lines
574 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Create admin-openrc.sh from secrets that are in the environment during bootstrap.
|
|
cat << EOF > /root/admin-openrc.sh
|
|
#!/bin/bash
|
|
export OS_TENANT_NAME=admin
|
|
export OS_USERNAME=admin
|
|
export OS_PASSWORD=${OS_PASSWORD}
|
|
export OS_AUTH_URL=https://merlin.hpc.rug.nl:35357/v3
|
|
export OS_IDENTITY_API_VERSION=3
|
|
EOF
|
|
|
|
# Create demo-openrc.sh
|
|
cat << EOF > /root/demo-openrc.sh
|
|
#!/bin/bash
|
|
export OS_TENANT_NAME=demo
|
|
export OS_USERNAME=demo
|
|
export OS_PASSWORD=${OS_DEMO_PASSWORD}
|
|
export OS_AUTH_URL=https://merlin.hpc.rug.nl:35357/v3
|
|
export OS_IDENTITY_API_VERSION=3
|
|
EOF
|