Add providers to API

This commit is contained in:
stefanprodan
2020-05-06 01:12:41 +03:00
parent 7686b4b01a
commit eba6478729
3 changed files with 12 additions and 2 deletions
-1
View File
@@ -89,4 +89,3 @@ type VirtualGatewayReference struct {
// UID is the UID of VirtualGateway CR
UID types.UID `json:"uid"`
}
@@ -325,7 +325,6 @@ type VirtualNodeStatus struct {
AWSCloudMapServiceStatus *AWSCloudMapServiceStatus `json:"awsCloudMapServiceStatus,omitempty"`
}
// +genclient
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
+12
View File
@@ -0,0 +1,12 @@
package v1beta1
const (
AppMeshProvider string = "appmesh"
LinkerdProvider string = "linkerd"
IstioProvider string = "istio"
SMIProvider string = "smi"
ContourProvider string = "contour"
GlooProvider string = "gloo"
NGINXProvider string = "nginx"
KubernetesProvider string = "kubernetes"
)