We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As per the enhancement proposal and two new CRDs
type SubmarinerNonGWRouteList struct { metav1.TypeMeta json:",inline" metav1.ListMeta json:"metadata"
json:",inline"
json:"metadata"
Items []SubmarinerNonGWRoute `json:"items"`
}
type SubmarinerRoutePolicySpec struct { //Specifies the next hop to reach the remote CIDRs NextHop string json:"nextHop"
json:"nextHop"
//Specifies the remote CIDRs available via the next hop RemoteCidr []string `json:"remoteCidr"`
type SubmarinerGwRouteList struct { metav1.TypeMeta json:",inline" metav1.ListMeta json:"metadata"
Items []SubmarinerGwRoute json:"items" }
json:"items"
The text was updated successfully, but these errors were encountered:
aswinsuryan
Successfully merging a pull request may close this issue.
As per the enhancement proposal and two new CRDs
type SubmarinerNonGWRouteList struct {
metav1.TypeMeta
json:",inline"
metav1.ListMeta
json:"metadata"
}
type SubmarinerRoutePolicySpec struct {
//Specifies the next hop to reach the remote CIDRs
NextHop string
json:"nextHop"
}
type SubmarinerGwRouteList struct {
metav1.TypeMeta
json:",inline"
metav1.ListMeta
json:"metadata"
Items []SubmarinerGwRoute
json:"items"
}
type SubmarinerRoutePolicySpec struct {
//Specifies the next hop to reach the remote CIDRs
NextHop string
json:"nextHop"
}
The text was updated successfully, but these errors were encountered: