Skip to content

Commit

Permalink
fix: route collisions (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Apr 11, 2024
1 parent 4ba3851 commit 42a8cc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions cert-setup/csr_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ echo " - Responsibility:"
echo " - Service Line:"
echo " - Project:"
echo " - Expense Authority:"
echo " - Financial Reporting Account:"
echo ""
echo "- Attach the newly generated CSR file only"

Expand Down
2 changes: 1 addition & 1 deletion cert-setup/install_cert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ if [[ "${ACCEPT^}" != "Y" ]]; then
else
# https://docs.openshift.com/container-platform/4.15/networking/routes/secured-routes.html#nw-ingress-creating-an-edge-route-with-a-custom-certificate_secured-routes
echo "Installing route"
oc create route edge --service=${SERVICE} --cert=${DOMAIN}.cert --key=${DOMAIN}.key --ca-cert=${DOMAIN}.ca-cert --hostname=${DOMAIN}
oc create route edge --service=${SERVICE} --cert=${DOMAIN}.cert --key=${DOMAIN}.key --ca-cert=${DOMAIN}.ca-cert --hostname=${DOMAIN} ${SERVICE}-vanity
fi

0 comments on commit 42a8cc8

Please sign in to comment.