Skip to content

Commit

Permalink
dep: healthcheck schema updates
Browse files Browse the repository at this point in the history
run make `manifests bundle`

Signed-off-by: Michael Nairn <[email protected]>
  • Loading branch information
mikenairn committed Nov 25, 2024
1 parent f94dd06 commit e74fa54
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ metadata:
capabilities: Basic Install
categories: Integration & Delivery
containerImage: quay.io/kuadrant/kuadrant-operator:latest
createdAt: "2024-11-18T10:54:46Z"
createdAt: "2024-11-25T09:30:08Z"
description: A Kubernetes Operator to manage the lifecycle of the Kuadrant system
operators.operatorframework.io/builder: operator-sdk-v1.32.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
Expand Down
24 changes: 16 additions & 8 deletions bundle/manifests/kuadrant.io_dnspolicies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,19 @@ spec:
- name
type: object
failureThreshold:
description: FailureThreshold is a limit of consecutive failures
that must occur for a host to be considered unhealthy
default: 5
description: |-
FailureThreshold is a limit of consecutive failures that must occur for a host to be considered unhealthy
Defaults to 5
type: integer
x-kubernetes-validations:
- message: Failure threshold must be greater than 0
rule: self > 0
interval:
description: Interval defines how frequently this probe should
execute
default: 5m
description: |-
Interval defines how frequently this probe should execute
Defaults to 5 minutes
type: string
path:
description: |-
Expand All @@ -115,15 +119,19 @@ spec:
pattern: ^(?:\?|\/)[\w\-.~:\/?#\[\]@!$&'()*+,;=]+(?:[a-zA-Z0-9]|\/){1}$
type: string
port:
description: Port to connect to the host on. Must be either 80,
443 or 1024-49151
default: 443
description: |-
Port to connect to the host on. Must be either 80, 443 or 1024-49151
Defaults to port 443
type: integer
x-kubernetes-validations:
- message: Only ports 80, 443, 1024-49151 are allowed
rule: self in [80, 443] || (self >= 1024 && self <= 49151)
protocol:
description: Protocol to use when connecting to the host, valid
values are "HTTP" or "HTTPS"
default: HTTPS
description: |-
Protocol to use when connecting to the host, valid values are "HTTP" or "HTTPS"
Defaults to HTTPS
type: string
x-kubernetes-validations:
- message: Only HTTP or HTTPS protocols are allowed
Expand Down
24 changes: 16 additions & 8 deletions config/crd/bases/kuadrant.io_dnspolicies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,15 +97,19 @@ spec:
- name
type: object
failureThreshold:
description: FailureThreshold is a limit of consecutive failures
that must occur for a host to be considered unhealthy
default: 5
description: |-
FailureThreshold is a limit of consecutive failures that must occur for a host to be considered unhealthy
Defaults to 5
type: integer
x-kubernetes-validations:
- message: Failure threshold must be greater than 0
rule: self > 0
interval:
description: Interval defines how frequently this probe should
execute
default: 5m
description: |-
Interval defines how frequently this probe should execute
Defaults to 5 minutes
type: string
path:
description: |-
Expand All @@ -114,15 +118,19 @@ spec:
pattern: ^(?:\?|\/)[\w\-.~:\/?#\[\]@!$&'()*+,;=]+(?:[a-zA-Z0-9]|\/){1}$
type: string
port:
description: Port to connect to the host on. Must be either 80,
443 or 1024-49151
default: 443
description: |-
Port to connect to the host on. Must be either 80, 443 or 1024-49151
Defaults to port 443
type: integer
x-kubernetes-validations:
- message: Only ports 80, 443, 1024-49151 are allowed
rule: self in [80, 443] || (self >= 1024 && self <= 49151)
protocol:
description: Protocol to use when connecting to the host, valid
values are "HTTP" or "HTTPS"
default: HTTPS
description: |-
Protocol to use when connecting to the host, valid values are "HTTP" or "HTTPS"
Defaults to HTTPS
type: string
x-kubernetes-validations:
- message: Only HTTP or HTTPS protocols are allowed
Expand Down

0 comments on commit e74fa54

Please sign in to comment.