-
Notifications
You must be signed in to change notification settings - Fork 346
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
feat: add v2beta1 structure for ApisixRoute #572
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one or more | ||
// contributor license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright ownership. | ||
// The ASF licenses this file to You under the Apache License, Version 2.0 | ||
// (the "License"); you may not use this file except in compliance with | ||
// the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// +k8s:deepcopy-gen=package | ||
// +groupName=apisix.apache.org | ||
package v2beta1 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one or more | ||
// contributor license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright ownership. | ||
// The ASF licenses this file to You under the Apache License, Version 2.0 | ||
// (the "License"); you may not use this file except in compliance with | ||
// the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package v2beta1 | ||
|
||
import ( | ||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
) | ||
|
||
const ( | ||
_groupName = "apisix.apache.org" | ||
_version = "v2beta1" | ||
) | ||
|
||
var ( | ||
SchemeGroupVersion = schema.GroupVersion{ | ||
Group: _groupName, | ||
Version: _version, | ||
} | ||
SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) | ||
AddToScheme = SchemeBuilder.AddToScheme | ||
) | ||
|
||
func Resource(resource string) schema.GroupResource { | ||
return SchemeGroupVersion.WithResource(resource).GroupResource() | ||
} | ||
|
||
func addKnownTypes(scheme *runtime.Scheme) error { | ||
scheme.AddKnownTypes(SchemeGroupVersion, | ||
&ApisixRoute{}, | ||
&ApisixRouteList{}, | ||
) | ||
|
||
// register the type in the scheme | ||
metav1.AddToGroupVersion(scheme, SchemeGroupVersion) | ||
return nil | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,227 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one or more | ||
// contributor license agreements. See the NOTICE file distributed with | ||
// this work for additional information regarding copyright ownership. | ||
// The ASF licenses this file to You under the Apache License, Version 2.0 | ||
// (the "License"); you may not use this file except in compliance with | ||
// the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
package v2beta1 | ||
|
||
import ( | ||
"encoding/json" | ||
|
||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/util/intstr" | ||
) | ||
|
||
// +genclient | ||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
// +kubebuilder:subresource:status | ||
// ApisixRoute is used to define the route rules and upstreams for Apache APISIX. | ||
type ApisixRoute struct { | ||
metav1.TypeMeta `json:",inline" yaml:",inline"` | ||
metav1.ObjectMeta `json:"metadata,omitempty" yaml:"metadata,omitempty"` | ||
Spec *ApisixRouteSpec `json:"spec,omitempty" yaml:"spec,omitempty"` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We may don't need the pointer. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto |
||
Status ApisixStatus `json:"status,omitempty" yaml:"status,omitempty"` | ||
} | ||
|
||
// ApisixStatus is the status report for Apisix ingress Resources | ||
type ApisixStatus struct { | ||
Conditions *[]metav1.Condition `json:"conditions,omitempty" yaml:"conditions,omitempty"` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think a slice is enough, why we need a pointer which points to a slice. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ditto |
||
} | ||
|
||
// ApisixRouteSpec is the spec definition for ApisixRouteSpec. | ||
type ApisixRouteSpec struct { | ||
HTTP []*ApisixRouteHTTP `json:"http,omitempty" yaml:"http,omitempty"` | ||
Stream []*ApisixRouteStream `json:"stream,omitempty" yaml:"stream,omitempty"` | ||
} | ||
|
||
// ApisixRouteHTTP represents a single route in for HTTP traffic. | ||
type ApisixRouteHTTP struct { | ||
// The rule name, cannot be empty. | ||
Name string `json:"name" yaml:"name"` | ||
// Route priority, when multiple routes contains | ||
// same URI path (for path matching), route with | ||
// higher priority will take effect. | ||
Priority int `json:"priority,omitempty" yaml:"priority,omitempty"` | ||
Match *ApisixRouteHTTPMatch `json:"match,omitempty" yaml:"match,omitempty"` | ||
// Deprecated: Backend will be removed in the future, use Backends instead. | ||
Backend *ApisixRouteHTTPBackend `json:"backend" yaml:"backend"` | ||
// Backends represents potential backends to proxy after the route | ||
// rule matched. When number of backends are more than one, traffic-split | ||
// plugin in APISIX will be used to split traffic based on the backend weight. | ||
Backends []*ApisixRouteHTTPBackend `json:"backends" yaml:"backends"` | ||
Websocket bool `json:"websocket" yaml:"websocket"` | ||
Plugins []*ApisixRouteHTTPPlugin `json:"plugins,omitempty" yaml:"plugins,omitempty"` | ||
Authentication *ApisixRouteAuthentication `json:"authentication,omitempty" yaml:"authentication,omitempty"` | ||
} | ||
|
||
// ApisixRouteHTTPMatch represents the match condition for hitting this route. | ||
type ApisixRouteHTTPMatch struct { | ||
// URI path predicates, at least one path should be | ||
// configured, path could be exact or prefix, for prefix path, | ||
// append "*" after it, for instance, "/foo*". | ||
Paths []string `json:"paths" yaml:"paths"` | ||
// HTTP request method predicates. | ||
Methods []string `json:"methods,omitempty" yaml:"methods,omitempty"` | ||
// HTTP Host predicates, host can be a wildcard domain or | ||
// an exact domain. For wildcard domain, only one generic | ||
// level is allowed, for instance, "*.foo.com" is valid but | ||
// "*.*.foo.com" is not. | ||
Hosts []string `json:"hosts,omitempty" yaml:"hosts,omitempty"` | ||
// Remote address predicates, items can be valid IPv4 address | ||
// or IPv6 address or CIDR. | ||
RemoteAddrs []string `json:"remoteAddrs,omitempty" yaml:"remoteAddrs,omitempty"` | ||
// NginxVars represents generic match predicates, | ||
// it uses Nginx variable systems, so any predicate | ||
// like headers, querystring and etc can be leveraged | ||
// here to match the route. | ||
// For instance, it can be: | ||
// nginxVars: | ||
// - subject: "$remote_addr" | ||
// op: in | ||
// value: | ||
// - "127.0.0.1" | ||
// - "10.0.5.11" | ||
NginxVars []ApisixRouteHTTPMatchExpr `json:"exprs,omitempty" yaml:"exprs,omitempty"` | ||
} | ||
|
||
// ApisixRouteHTTPMatchExpr represents a binary route match expression . | ||
type ApisixRouteHTTPMatchExpr struct { | ||
// Subject is the expression subject, it can | ||
// be any string composed by literals and nginx | ||
// vars. | ||
Subject ApisixRouteHTTPMatchExprSubject `json:"subject" yaml:"subject"` | ||
// Op is the operator. | ||
Op string `json:"op" yaml:"op"` | ||
// Set is an array type object of the expression. | ||
// It should be used when the Op is "in" or "not_in"; | ||
Set []string `json:"set" yaml:"set"` | ||
// Value is the normal type object for the expression, | ||
// it should be used when the Op is not "in" and "not_in". | ||
// Set and Value are exclusive so only of them can be set | ||
// in the same time. | ||
Value *string `json:"value" yaml:"value"` | ||
} | ||
|
||
// ApisixRouteHTTPMatchExprSubject describes the route match expression subject. | ||
type ApisixRouteHTTPMatchExprSubject struct { | ||
// The subject scope, can be: | ||
// ScopeQuery, ScopeHeader, ScopePath | ||
// when subject is ScopePath, Name field | ||
// will be ignored. | ||
Scope string `json:"scope" yaml:"scope"` | ||
// The name of subject. | ||
Name string `json:"name" yaml:"name"` | ||
} | ||
|
||
// ApisixRouteHTTPBackend represents a HTTP backend (a Kuberentes Service). | ||
type ApisixRouteHTTPBackend struct { | ||
// The name (short) of the service, note cross namespace is forbidden, | ||
// so be sure the ApisixRoute and Service are in the same namespace. | ||
ServiceName string `json:"serviceName" yaml:"serviceName"` | ||
// The service port, could be the name or the port number. | ||
ServicePort intstr.IntOrString `json:"servicePort" yaml:"servicePort"` | ||
// The resolve granularity, can be "endpoints" or "service", | ||
// when set to "endpoints", the pod ips will be used; other | ||
// wise, the service ClusterIP or ExternalIP will be used, | ||
// default is endpoints. | ||
ResolveGranularity string `json:"resolveGranularity" yaml:"resolveGranularity"` | ||
// Weight of this backend. | ||
Weight *int `json:"weight" yaml:"weight"` | ||
// Subset specifies a subset for the target Service. The subset should be pre-defined | ||
// in ApisixUpstream about this service. | ||
Subset string `json:"subset" yaml:"subset"` | ||
} | ||
|
||
// ApisixRouteHTTPPlugin represents an APISIX plugin. | ||
type ApisixRouteHTTPPlugin struct { | ||
// The plugin name. | ||
Name string `json:"name" yaml:"name"` | ||
// Whether this plugin is in use, default is true. | ||
Enable bool `json:"enable" yaml:"enable"` | ||
// Plugin configuration. | ||
// TODO we may use protobuf to define it. | ||
Config ApisixRouteHTTPPluginConfig `json:"config" yaml:"config"` | ||
} | ||
|
||
// ApisixRouteHTTPPluginConfig is the configuration for | ||
// any plugins. | ||
type ApisixRouteHTTPPluginConfig map[string]interface{} | ||
|
||
// ApisixRouteAuthentication is the authentication-related | ||
// configuration in ApisixRoute. | ||
type ApisixRouteAuthentication struct { | ||
Enable bool `json:"enable" yaml:"enable"` | ||
Type string `json:"type" yaml:"type"` | ||
KeyAuth ApisixRouteAuthenticationKeyAuth `json:"keyauth,omitempty" yaml:"keyauth,omitempty"` | ||
} | ||
|
||
// ApisixRouteAuthenticationKeyAuth is the keyAuth-related | ||
// configuration in ApisixRouteAuthentication. | ||
type ApisixRouteAuthenticationKeyAuth struct { | ||
Header string `json:"header,omitempty" yaml:"header,omitempty"` | ||
} | ||
|
||
func (p ApisixRouteHTTPPluginConfig) DeepCopyInto(out *ApisixRouteHTTPPluginConfig) { | ||
b, _ := json.Marshal(&p) | ||
_ = json.Unmarshal(b, out) | ||
} | ||
|
||
func (p *ApisixRouteHTTPPluginConfig) DeepCopy() *ApisixRouteHTTPPluginConfig { | ||
if p == nil { | ||
return nil | ||
} | ||
out := new(ApisixRouteHTTPPluginConfig) | ||
p.DeepCopyInto(out) | ||
return out | ||
} | ||
|
||
// ApisixRouteStream is the configuration for level 4 route | ||
type ApisixRouteStream struct { | ||
// The rule name, cannot be empty. | ||
Name string `json:"name" yaml:"name"` | ||
Protocol string `json:"protocol" yaml:"protocol"` | ||
Match ApisixRouteStreamMatch `json:"match" yaml:"match"` | ||
Backend ApisixRouteStreamBackend `json:"backend" yaml:"backend"` | ||
} | ||
|
||
// ApisixRouteStreamMatch represents the match conditions of stream route. | ||
type ApisixRouteStreamMatch struct { | ||
// IngressPort represents the port listening on the Ingress proxy server. | ||
// It should be pre-defined as APISIX doesn't support dynamic listening. | ||
IngressPort int32 `json:"ingressPort" yaml:"ingressPort"` | ||
} | ||
|
||
// ApisixRouteStreamBackend represents a TCP backend (a Kubernetes Service). | ||
type ApisixRouteStreamBackend struct { | ||
// The name (short) of the service, note cross namespace is forbidden, | ||
// so be sure the ApisixRoute and Service are in the same namespace. | ||
ServiceName string `json:"serviceName" yaml:"serviceName"` | ||
// The service port, could be the name or the port number. | ||
ServicePort intstr.IntOrString `json:"servicePort" yaml:"servicePort"` | ||
// The resolve granularity, can be "endpoints" or "service", | ||
// when set to "endpoints", the pod ips will be used; other | ||
// wise, the service ClusterIP or ExternalIP will be used, | ||
// default is endpoints. | ||
ResolveGranularity string `json:"resolveGranularity" yaml:"resolveGranularity"` | ||
// Subset specifies a subset for the target Service. The subset should be pre-defined | ||
// in ApisixUpstream about this service. | ||
Subset string `json:"subset" yaml:"subset"` | ||
} | ||
|
||
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object | ||
|
||
// ApisixRouteList contains a list of ApisixRoute. | ||
type ApisixRouteList struct { | ||
metav1.TypeMeta `json:",inline" yaml:",inline"` | ||
metav1.ListMeta `json:"metadata" yaml:"metadata"` | ||
Items []ApisixRoute `json:"items,omitempty" yaml:"items,omitempty"` | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We may don't need the pointer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just copy the other fields from v2alpha1, Perhaps we can change these fields, do not use pointer since v2beta1.