-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
333 additions
and
10 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
85 changes: 85 additions & 0 deletions
85
config/crd/bases/networking.cfargotunnel.com_accessservices.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,85 @@ | ||
|
||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.7.0 | ||
creationTimestamp: null | ||
name: accessservices.networking.cfargotunnel.com | ||
spec: | ||
group: networking.cfargotunnel.com | ||
names: | ||
kind: AccessService | ||
listKind: AccessServiceList | ||
plural: accessservices | ||
singular: accessservice | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: AccessService is the Schema for the accessservices API | ||
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: AccessServiceSpec defines the desired state of AccessService | ||
properties: | ||
hostname: | ||
description: FQDN to connect to for the TCP tunnel | ||
type: string | ||
port: | ||
description: Port defines the port for the service to listen on | ||
format: int32 | ||
maximum: 65535 | ||
minimum: 1 | ||
type: integer | ||
protocol: | ||
default: tcp | ||
description: Protocol defines the protocol to use, only TCP for now, | ||
default | ||
enum: | ||
- tcp | ||
- udp | ||
type: string | ||
replicas: | ||
description: Replicas defines the number of cloudflared access replicas | ||
to run | ||
format: int32 | ||
type: integer | ||
serviceName: | ||
description: ServiceName defines the name of the service for this | ||
port to be exposed on | ||
type: string | ||
required: | ||
- hostname | ||
- port | ||
- protocol | ||
- replicas | ||
- serviceName | ||
type: object | ||
status: | ||
description: AccessServiceStatus defines the observed state of AccessService | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
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
Oops, something went wrong.