Skip to content
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

Add OpenAPI v3 schemas to CRDs #157

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion traefik/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: traefik
version: 8.1.0
version: 8.2.0
appVersion: 2.2.0
description: A Traefik based Kubernetes ingress controller
keywords:
Expand Down
126 changes: 124 additions & 2 deletions traefik/crds/ingressroute.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,132 @@
apiVersion: apiextensions.k8s.io/v1beta1
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: ingressroutes.traefik.containo.us
spec:
group: traefik.containo.us
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
routes:
type: array
items:
type: object
properties:
match:
type: string
kind:
type: string
priority:
type: integer
services:
type: array
items:
type: object
properties:
sticky:
type: object
properties:
cookie:
type: object
properties:
name:
type: string
secure:
type: boolean
httpOnly:
type: boolean
namespace:
type: string
kind:
type: string
name:
type: string
weight:
type: integer
responseForwarding:
type: object
properties:
flushInterval:
type: string
passHostHeader:
type: boolean
healthCheck:
type: object
properties:
path:
type: string
host:
type: string
scheme:
type: string
intervalSeconds:
type: integer
timeoutSeconds:
type: integer
headers:
type: object
strategy:
type: string
scheme:
type: string
port:
type: integer
middlewares:
type: array
items:
type: object
properties:
name:
type: string
namespace:
type: string
required:
- name
- namespace
entryPoints:
type: array
items:
type: string
tls:
type: object
properties:
secretName:
type: string
options:
type: object
properties:
name:
type: string
namespace:
type: string
store:
type: object
properties:
name:
type: string
namespace:
type: string
certResolver:
type: string
domains:
type: array
items:
type: object
properties:
main:
type: string
sans:
type: array
items:
type: string
names:
kind: IngressRoute
plural: ingressroutes
Expand Down
74 changes: 72 additions & 2 deletions traefik/crds/ingressroutetcp.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,80 @@
apiVersion: apiextensions.k8s.io/v1beta1
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: ingressroutetcps.traefik.containo.us
spec:
group: traefik.containo.us
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
routes:
type: array
items:
type: object
properties:
match:
type: string
services:
type: array
items:
type: object
properties:
name:
type: string
namespace:
type: string
port:
type: integer
weight:
type: integer
terminationDelay:
type: integer
entryPoints:
type: array
items:
type: string
tls:
type: object
properties:
secretName:
type: string
passthrough:
type: boolean
options:
type: object
properties:
name:
type: string
namespace:
type: string
store:
type: object
properties:
name:
type: string
namespace:
type: string
certResolver:
type: string
domains:
type: array
items:
type: object
properties:
main:
type: string
sans:
type: array
items:
type: string
names:
kind: IngressRouteTCP
plural: ingressroutetcps
Expand Down
37 changes: 34 additions & 3 deletions traefik/crds/ingressrouteudp.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,42 @@
apiVersion: apiextensions.k8s.io/v1beta1
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: ingressrouteudps.traefik.containo.us

spec:
group: traefik.containo.us
version: v1alpha1
versions:
- name: v1alpha1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
properties:
routes:
type: array
items:
type: object
properties:
services:
type: array
items:
type: object
properties:
name:
type: string
namespace:
type: string
port:
type: integer
weight:
type: integer
entryPoints:
type: array
items:
type: string
names:
kind: IngressRouteUDP
plural: ingressrouteudps
Expand Down
Loading