-
Notifications
You must be signed in to change notification settings - Fork 743
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Istio virtual service and signal packages
- Loading branch information
1 parent
f7c4d5a
commit b0b6198
Showing
39 changed files
with
1,187 additions
and
364 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package v1alpha1 | ||
|
||
// Describes how to match a given string in HTTP headers. Match is | ||
// case-sensitive. | ||
type StringMatch struct { | ||
// Specified exactly one of the fields below. | ||
|
||
// exact string match | ||
Exact string `json:"exact,omitempty"` | ||
|
||
// prefix-based match | ||
Prefix string `json:"prefix,omitempty"` | ||
|
||
// suffix-based match. | ||
Suffix string `json:"suffix,omitempty"` | ||
|
||
// ECMAscript style regex-based match | ||
Regex string `json:"regex,omitempty"` | ||
} |
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,5 @@ | ||
package istio | ||
|
||
const ( | ||
GroupName = "networking.istio.io" | ||
) |
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,7 @@ | ||
// Api versions allow the api contract for a resource to be changed while keeping | ||
// backward compatibility by support multiple concurrent versions | ||
// of the same resource | ||
|
||
// +k8s:deepcopy-gen=package | ||
// +groupName=networking.istio.io | ||
package v1alpha3 |
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
Oops, something went wrong.