forked from maistra/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
istioctl describe: fixes, test case, remove deprecated code (#20169)
* istioctl describe: fixes, test case, remove deprecated code * Remove unneeded subtest structure * Remove unnecessary change in describe * Match describe output by regexp, not string * Additional output to test the tests * Keep constructor signature * Fix compilation problem * Look for Envoy config metadata in Istio 1.5.x format * 'make format' * Ran 'gen'
- Loading branch information
1 parent
ca0b966
commit 926a1bf
Showing
8 changed files
with
154 additions
and
1,116 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 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 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 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,33 @@ | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: VirtualService | ||
metadata: | ||
name: a | ||
spec: | ||
hosts: | ||
- a | ||
http: | ||
# (This 'match' clause started as a work-around, because WaitUntilCallable() times out if | ||
# all destinations have a subset. We are now using it for testing.) | ||
- match: | ||
- headers: | ||
end-user: | ||
exact: jason | ||
route: | ||
- destination: | ||
host: a | ||
# Fallthrough | ||
- route: | ||
- destination: | ||
host: a | ||
subset: v1 | ||
--- | ||
apiVersion: networking.istio.io/v1alpha3 | ||
kind: DestinationRule | ||
metadata: | ||
name: a | ||
spec: | ||
host: a | ||
subsets: | ||
- name: v1 | ||
labels: | ||
version: v1 |
Oops, something went wrong.