-
Notifications
You must be signed in to change notification settings - Fork 985
Test certificate add token remote operation #13740
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
tomponline
merged 3 commits into
canonical:main
from
markylaing:test-certificate-token-remote-operation
Jul 11, 2024
Merged
Test certificate add token remote operation #13740
tomponline
merged 3 commits into
canonical:main
from
markylaing:test-certificate-token-remote-operation
Jul 11, 2024
Conversation
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
456ee35 to
4cba125
Compare
test/includes/uuid.sh
Outdated
| is_uuid_v4() { | ||
| # Case insensitive match for a v4 UUID. The third group must start with 4, and the fourth group must start with 8, 9, | ||
| # a, or b. This accounts for the version and variant. See https://datatracker.ietf.org/doc/html/rfc9562#name-uuid-version-4. | ||
| echo -n "${1}" | grep --ignore-case '^[0-9a-f]\{8\}-[0-9a-f]\{4\}-4[0-9a-f]\{3\}-[89ab][0-9a-f]\{3\}-[0-9a-f]\{12\}$' |
Check warning
Code scanning / shellcheck
SC3037
In POSIX sh, echo flags are undefined.
4cba125 to
d855161
Compare
test/includes/uuid.sh
Outdated
| is_uuid_v4() { | ||
| # Case insensitive match for a v4 UUID. The third group must start with 4, and the fourth group must start with 8, 9, | ||
| # a, or b. This accounts for the version and variant. See https://datatracker.ietf.org/doc/html/rfc9562#name-uuid-version-4. | ||
| printf "${1}" | grep --ignore-case '^[0-9a-f]\{8\}-[0-9a-f]\{4\}-4[0-9a-f]\{3\}-[89ab][0-9a-f]\{3\}-[0-9a-f]\{12\}$' |
Check warning
Code scanning / shellcheck
SC2059
Don't use variables in the printf format string. Use printf '..%s..' "$foo".
Signed-off-by: Mark Laing <[email protected]>
Tests the case where a certificate add operation is running on cluster member A, but the `POST /1.0/certificates` request containing the join token is sent to cluster member B. Signed-off-by: Mark Laing <[email protected]>
Signed-off-by: Mark Laing <[email protected]>
d855161 to
d89e0ba
Compare
tomponline
approved these changes
Jul 11, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Tests the case where a certificate add operation is running on cluster member A, but the
POST /1.0/certificatesrequest containing the join token is sent to cluster member B.