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 support for user defined browsers in APPolicy #1481

Merged
merged 1 commit into from
May 17, 2021
Merged
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
44 changes: 44 additions & 0 deletions deployments/common/crds/appprotect.f5.com_appolicies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,31 @@ spec:
type: string
type: object
type: array
browsers:
items:
properties:
$action:
enum:
- delete
type: string
action:
enum:
- alarm
- block
- detect
type: string
maxVersion:
maximum: 2147483647
minimum: 0
type: integer
minVersion:
maximum: 2147483647
minimum: 0
type: integer
name:
type: string
type: object
type: array
classes:
items:
properties:
Expand All @@ -260,9 +285,11 @@ spec:
type: string
name:
enum:
- browser
- malicious-bot
- suspicious-browser
- trusted-bot
- unknown
- untrusted-bot
type: string
type: object
Expand All @@ -288,6 +315,23 @@ spec:
type: boolean
type: object
type: object
browser-definitions:
items:
properties:
$action:
enum:
- delete
type: string
isUserDefined:
type: boolean
matchRegex:
type: string
matchString:
type: string
name:
type: string
type: object
type: array
caseInsensitive:
type: boolean
character-sets:
Expand Down
44 changes: 44 additions & 0 deletions deployments/helm-chart/crds/appprotect.f5.com_appolicies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,31 @@ spec:
type: string
type: object
type: array
browsers:
items:
properties:
$action:
enum:
- delete
type: string
action:
enum:
- alarm
- block
- detect
type: string
maxVersion:
maximum: 2147483647
minimum: 0
type: integer
minVersion:
maximum: 2147483647
minimum: 0
type: integer
name:
type: string
type: object
type: array
classes:
items:
properties:
Expand All @@ -260,9 +285,11 @@ spec:
type: string
name:
enum:
- browser
- malicious-bot
- suspicious-browser
- trusted-bot
- unknown
- untrusted-bot
type: string
type: object
Expand All @@ -288,6 +315,23 @@ spec:
type: boolean
type: object
type: object
browser-definitions:
items:
properties:
$action:
enum:
- delete
type: string
isUserDefined:
type: boolean
matchRegex:
type: string
matchString:
type: string
name:
type: string
type: object
type: array
caseInsensitive:
type: boolean
character-sets:
Expand Down