mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
41 lines
1008 B
YAML
41 lines
1008 B
YAML
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata :
|
|
name : sourcesidentifiers.openappsec.io
|
|
|
|
spec:
|
|
group: openappsec.io
|
|
versions:
|
|
- name: v1beta1
|
|
served: true
|
|
storage: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
sourceIdentifier:
|
|
type: string
|
|
enum:
|
|
- headerkey
|
|
- JWTKey
|
|
- cookie
|
|
- sourceip
|
|
- x-forwarded-for
|
|
value:
|
|
type: array
|
|
items:
|
|
type: string
|
|
|
|
scope: Cluster
|
|
names:
|
|
plural: sourcesidentifiers
|
|
singular: sourcesidentifier
|
|
kind: SourcesIdentifier
|
|
shortNames:
|
|
- sourcesidentifier
|