-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add load balancing method to transport server config
- Loading branch information
Showing
15 changed files
with
366 additions
and
23 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
147 changes: 147 additions & 0 deletions
147
deployments/common/crds-v1beta1/k8s.nginx.org_transportservers.yaml
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,147 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.5.0 | ||
creationTimestamp: null | ||
name: transportservers.k8s.nginx.org | ||
spec: | ||
additionalPrinterColumns: | ||
- JSONPath: .status.state | ||
description: Current state of the TransportServer. If the resource has a valid status, it means it has been validated and accepted by the Ingress Controller. | ||
name: State | ||
type: string | ||
- JSONPath: .status.reason | ||
name: Reason | ||
type: string | ||
- JSONPath: .metadata.creationTimestamp | ||
name: Age | ||
type: date | ||
group: k8s.nginx.org | ||
names: | ||
kind: TransportServer | ||
listKind: TransportServerList | ||
plural: transportservers | ||
shortNames: | ||
- ts | ||
singular: transportserver | ||
preserveUnknownFields: false | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
description: TransportServer defines the TransportServer resource. | ||
type: object | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: TransportServerSpec is the spec of the TransportServer resource. | ||
type: object | ||
properties: | ||
action: | ||
description: Action defines an action. | ||
type: object | ||
properties: | ||
pass: | ||
type: string | ||
host: | ||
type: string | ||
ingressClassName: | ||
type: string | ||
listener: | ||
description: TransportServerListener defines a listener for a TransportServer. | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
protocol: | ||
type: string | ||
serverSnippets: | ||
type: string | ||
sessionParameters: | ||
description: SessionParameters defines session parameters. | ||
type: object | ||
properties: | ||
timeout: | ||
type: string | ||
upstreamParameters: | ||
description: UpstreamParameters defines parameters for an upstream. | ||
type: object | ||
properties: | ||
connectTimeout: | ||
type: string | ||
nextUpstream: | ||
type: boolean | ||
nextUpstreamTimeout: | ||
type: string | ||
nextUpstreamTries: | ||
type: integer | ||
udpRequests: | ||
type: integer | ||
udpResponses: | ||
type: integer | ||
upstreams: | ||
type: array | ||
items: | ||
description: Upstream defines an upstream. | ||
type: object | ||
properties: | ||
failTimeout: | ||
type: string | ||
healthCheck: | ||
description: HealthCheck defines the parameters for active Upstream HealthChecks. | ||
type: object | ||
properties: | ||
enable: | ||
type: boolean | ||
fails: | ||
type: integer | ||
interval: | ||
type: string | ||
jitter: | ||
type: string | ||
passes: | ||
type: integer | ||
port: | ||
type: integer | ||
timeout: | ||
type: string | ||
loadBalancingMethod: | ||
type: string | ||
maxFails: | ||
type: integer | ||
name: | ||
type: string | ||
port: | ||
type: integer | ||
service: | ||
type: string | ||
status: | ||
description: TransportServerStatus defines the status for the TransportServer resource. | ||
type: object | ||
properties: | ||
message: | ||
type: string | ||
reason: | ||
type: string | ||
state: | ||
type: string | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
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
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
Oops, something went wrong.