This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Made admin user compliant with restrictions (API and TP)#4764
Merged
rawlinp merged 4 commits intoapache:masterfrom Jun 8, 2020
Merged
Made admin user compliant with restrictions (API and TP)#4764rawlinp merged 4 commits intoapache:masterfrom
rawlinp merged 4 commits intoapache:masterfrom
Conversation
zrhoffman
suggested changes
Jun 8, 2020
zrhoffman
approved these changes
Jun 8, 2020
Member
zrhoffman
left a comment
There was a problem hiding this comment.
- Confirmed CDN-in-a-Box starts successfully and
readinesscontainer exits successfully after cURLing delivery service example URLs - Confirmed that the admin user has the given full name and email
rawlinp
approved these changes
Jun 8, 2020
4 tasks
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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What does this PR (Pull Request) do?
Added an email and full name to the "admin" user created for CDN-in-a-Box, and changes its password to meet the minimum length requirement. Currently in CDN-in-a-Box, if you navigate to the "admin" user's user under "Users", you notice that it's missing the required "Full Name" field and the required "Email" field, and its password isn't long enough. This means that any small change you want to make to the user e.g. for testing purposes must minimally fix those three issues. After this PR, those would no longer be a problem.
Again, though, this does change the CiaB "admin" user's password. People using CiaB for testing may be broken, but if done properly by sourcing
variables.envand using$TO_ADMIN_PASSWORDit shouldn't make a difference.Which Traffic Control components are affected by this PR?
What is the best way to verify this PR?
Build and run CDN-in-a-Box; everything should work normally. Try authenticating as
$TO_ADMIN_USERusing$TO_ADMIN_PASSWORDand verify that works. Check that user's information to verify that the email and full name are present.The following criteria are ALL met by this PR