-
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.
* Register TransportServer CRD * Add controller.enableTLSPassthrough parameter
- Loading branch information
Showing
7 changed files
with
93 additions
and
0 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
79 changes: 79 additions & 0 deletions
79
deployments/helm-chart/templates/controller-ts-definition.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,79 @@ | ||
{{- if .Values.controller.enableCustomResources }} | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: transportservers.k8s.nginx.org | ||
labels: | ||
{{- include "nginx-ingress.labels" . | nindent 4 }} | ||
spec: | ||
group: k8s.nginx.org | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
scope: Namespaced | ||
names: | ||
plural: transportservers | ||
singular: transportserver | ||
kind: TransportServer | ||
shortNames: | ||
- ts | ||
preserveUnknownFields: false | ||
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 | ||
listener: | ||
description: TransportServerListener defines a listener for a TransportServer. | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
protocol: | ||
type: string | ||
upstreamParameters: | ||
description: UpstreamParameters defines parameters for an upstream. | ||
type: object | ||
properties: | ||
udpRequests: | ||
type: integer | ||
udpResponses: | ||
type: integer | ||
upstreams: | ||
type: array | ||
items: | ||
description: Upstream defines an upstream. | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
port: | ||
type: integer | ||
service: | ||
type: string | ||
{{- end }} |
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 |
---|---|---|
|
@@ -71,6 +71,7 @@ rules: | |
resources: | ||
- virtualservers | ||
- virtualserverroutes | ||
- transportservers | ||
verbs: | ||
- list | ||
- watch | ||
|
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