This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDTzwOd6vfwCysO1bCfkzohIvzB37K37TmigSbTtZKRjiot4DuskkI3px8uBZvFpW8EMjOfdTCo0vgH3wu+mmWmLW/pb8WabcoYjV44slhm6yAEHjseN8W26thPUSzkaXGlvoOHGjuK75+/xa9tbfSpFvhqLi5UtEaoaPrqlC6ft1nSHgW/AueR8mHtIKY2CLA0Zr37e6NnmediXeyTx4WbZXX5MDDYMQy+uif1N247K643MqDjmBjvdnXUNv7e4P9/uvYyVcFNh6hvgHR8PSAqFylDuic28doZ7GLDqk4XVWyusqIjrqz4CdEcUNZUeUchkOiFUewKAKx73dZrjks9wwGX+FCfCOxi3L0UNaPmDhTOAvuQ1SanYppJqy2zUWP80X75QRjrFNov4tigLnbSyiP9ykB1/Cn1CPrnTTwyvt7T6EGaNA0XKaiTCo+m4rA5GkDYzxFjtph/05sxUvfV1IMsepE0b5jhR+UBYvwJb56cioyrGP0rRKvdhYEZew1mWbS2S2lqTPMqEcYhPfiaBPhuk4b26L5HS/5qfDqItlEpcm8eWDm50T8fltVHrSlQJdBwlyYjCOjFuq+W7tf+zZnaib9+7eK64H5gl1Ao3W+nAQbFl2qaqroAxmgPbI6hSrN8/kMAqRsdeVudPk0qrHa//mwa/NV1XlpKArb8xQ== [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
### These initial steps are hacks to get around certificate issues ### | |
# extract the URL we need in the route's hostname | |
cluster_url="$(oc whoami --show-server | cut -f 2 -d ':' | cut -f 3 -d '/' | sed 's/-api././')" |
OlderNewer