-
Notifications
You must be signed in to change notification settings - Fork 73
add tests for multitenancy with Service Mesh #2198
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
Closed
Closed
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
59c40a8
add tests for multitenancy with Service Mesh
ReToCode 03df549
add AuthorizationPolicies to mesh_resources
ReToCode 87e93f6
add DestinationRules and PeerAuthentications to make Domain-Mapping work
ReToCode 4e57576
Test without forcing mTLS in knative-eventing
ReToCode 9329176
Skip Long Response message test for now
ReToCode 7bfbc5d
Test with http in name
ReToCode cce77a4
Revert "Test with http in name"
ReToCode 185b6f8
Revert "Skip Long Response message test for now"
ReToCode c5a4dc9
Revert "Test without forcing mTLS in knative-eventing"
ReToCode File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| #!/usr/bin/env bash | ||
|
|
||
| set -Eeuo pipefail | ||
|
|
||
| tenants="${1:?Provide tenants as comma-delimited as arg[1]}" | ||
|
|
||
| # exit if helm is not installed | ||
| helm > /dev/null || exit 127 | ||
|
|
||
| # shellcheck disable=SC1091,SC1090 | ||
| source "$(dirname "${BASH_SOURCE[0]}")/../lib/metadata.bash" | ||
|
|
||
| policies_path="$(dirname "${BASH_SOURCE[0]}")/../lib/mesh_resources/authorization-policies/helm" | ||
| chart_version="$(metadata.get project.version)" | ||
|
|
||
| echo "Cleaning up old resources in $policies_path" | ||
|
|
||
| rm -rf "$policies_path" | ||
| mkdir -p "$policies_path" | ||
|
|
||
| for tenant in ${tenants//,/ }; do | ||
| echo "Generating AuthorizationPolicies for tenant $tenant" | ||
|
|
||
| helm template oci://quay.io/openshift-knative/knative-istio-authz-onboarding --version "$chart_version" --set "name=$tenant" --set "namespaces={$tenant}" > "$policies_path/$tenant.yaml" | ||
| done | ||
|
|
||
| echo "Istio AuthorizationPolicies successfully updated for version $chart_version" |
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.