Skip to content

Commit 8622dc9

Browse files
committed
🔄 synced local 'charts/kong-operator' with remote 'charts/kong-operator'
1 parent 96cbceb commit 8622dc9

16 files changed

+176
-64
lines changed

‎charts/kong-operator/charts/ko-crds/templates/ko-crds.yaml‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52186,7 +52186,9 @@ spec:
5218652186
name: v1alpha1
5218752187
schema:
5218852188
openAPIV3Schema:
52189-
description: KongRoute is the schema for Routes API which defines a Kong Route.
52189+
description: |-
52190+
KongRoute is the schema for Routes API which defines a Kong Route.
52191+
Currently, KongRoute supports only the JSON flavor of Route configuration.
5219052192
properties:
5219152193
apiVersion:
5219252194
description: |-
@@ -53882,8 +53884,10 @@ spec:
5388253884
type: object
5388353885
threshold:
5388453886
description: |-
53885-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
53886-
upstream to be considered healthy.
53887+
Threshold is the minimum percentage of the upstream’s targets’ weight that
53888+
must be available for the whole upstream to be considered healthy.
53889+
maximum: 100
53890+
minimum: 0
5388753891
type: integer
5388853892
type: object
5388953893
slots:
@@ -54507,7 +54511,7 @@ spec:
5450754511
as hash input. Only required when `hash_on` is set to `uri_capture`.
5450854512
type: string
5450954513
healthchecks:
54510-
description: Healthchecks - The array of healthchecks.
54514+
description: Healthchecks is the configuration of upstream's healthchecks.
5451154515
properties:
5451254516
active:
5451354517
properties:
@@ -54630,6 +54634,9 @@ spec:
5463054634
required:
5463154635
- threshold
5463254636
type: object
54637+
x-kubernetes-validations:
54638+
- message: healthcheck threshold must be between 0 and 100
54639+
rule: self.threshold >= 0 && self.threshold <= 100
5463354640
host_header:
5463454641
description: The hostname to be used as `Host` header when proxying
5463554642
requests through Kong.

‎charts/kong-operator/ci/__snapshots__/affinity-values.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48989,7 +48989,9 @@ spec:
4898948989
name: v1alpha1
4899048990
schema:
4899148991
openAPIV3Schema:
48992-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48992+
description: |-
48993+
KongRoute is the schema for Routes API which defines a Kong Route.
48994+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899348995
properties:
4899448996
apiVersion:
4899548997
description: |-
@@ -50516,8 +50518,10 @@ spec:
5051650518
type: object
5051750519
threshold:
5051850520
description: |-
50519-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50520-
upstream to be considered healthy.
50521+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50522+
must be available for the whole upstream to be considered healthy.
50523+
maximum: 100
50524+
minimum: 0
5052150525
type: integer
5052250526
type: object
5052350527
slots:
@@ -51080,7 +51084,7 @@ spec:
5108051084
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108151085
type: string
5108251086
healthchecks:
51083-
description: Healthchecks - The array of healthchecks.
51087+
description: Healthchecks is the configuration of upstream's healthchecks.
5108451088
properties:
5108551089
active:
5108651090
properties:
@@ -51200,6 +51204,9 @@ spec:
5120051204
required:
5120151205
- threshold
5120251206
type: object
51207+
x-kubernetes-validations:
51208+
- message: healthcheck threshold must be between 0 and 100
51209+
rule: self.threshold >= 0 && self.threshold <= 100
5120351210
host_header:
5120451211
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120551212
type: string

‎charts/kong-operator/ci/__snapshots__/controlplane-config-dump.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48989,7 +48989,9 @@ spec:
4898948989
name: v1alpha1
4899048990
schema:
4899148991
openAPIV3Schema:
48992-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48992+
description: |-
48993+
KongRoute is the schema for Routes API which defines a Kong Route.
48994+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899348995
properties:
4899448996
apiVersion:
4899548997
description: |-
@@ -50516,8 +50518,10 @@ spec:
5051650518
type: object
5051750519
threshold:
5051850520
description: |-
50519-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50520-
upstream to be considered healthy.
50521+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50522+
must be available for the whole upstream to be considered healthy.
50523+
maximum: 100
50524+
minimum: 0
5052150525
type: integer
5052250526
type: object
5052350527
slots:
@@ -51080,7 +51084,7 @@ spec:
5108051084
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108151085
type: string
5108251086
healthchecks:
51083-
description: Healthchecks - The array of healthchecks.
51087+
description: Healthchecks is the configuration of upstream's healthchecks.
5108451088
properties:
5108551089
active:
5108651090
properties:
@@ -51200,6 +51204,9 @@ spec:
5120051204
required:
5120151205
- threshold
5120251206
type: object
51207+
x-kubernetes-validations:
51208+
- message: healthcheck threshold must be between 0 and 100
51209+
rule: self.threshold >= 0 && self.threshold <= 100
5120351210
host_header:
5120451211
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120551212
type: string

‎charts/kong-operator/ci/__snapshots__/disable-gateway-controller-values.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48989,7 +48989,9 @@ spec:
4898948989
name: v1alpha1
4899048990
schema:
4899148991
openAPIV3Schema:
48992-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48992+
description: |-
48993+
KongRoute is the schema for Routes API which defines a Kong Route.
48994+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899348995
properties:
4899448996
apiVersion:
4899548997
description: |-
@@ -50516,8 +50518,10 @@ spec:
5051650518
type: object
5051750519
threshold:
5051850520
description: |-
50519-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50520-
upstream to be considered healthy.
50521+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50522+
must be available for the whole upstream to be considered healthy.
50523+
maximum: 100
50524+
minimum: 0
5052150525
type: integer
5052250526
type: object
5052350527
slots:
@@ -51080,7 +51084,7 @@ spec:
5108051084
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108151085
type: string
5108251086
healthchecks:
51083-
description: Healthchecks - The array of healthchecks.
51087+
description: Healthchecks is the configuration of upstream's healthchecks.
5108451088
properties:
5108551089
active:
5108651090
properties:
@@ -51200,6 +51204,9 @@ spec:
5120051204
required:
5120151205
- threshold
5120251206
type: object
51207+
x-kubernetes-validations:
51208+
- message: healthcheck threshold must be between 0 and 100
51209+
rule: self.threshold >= 0 && self.threshold <= 100
5120351210
host_header:
5120451211
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120551212
type: string

‎charts/kong-operator/ci/__snapshots__/env-and-args-values.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48989,7 +48989,9 @@ spec:
4898948989
name: v1alpha1
4899048990
schema:
4899148991
openAPIV3Schema:
48992-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48992+
description: |-
48993+
KongRoute is the schema for Routes API which defines a Kong Route.
48994+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899348995
properties:
4899448996
apiVersion:
4899548997
description: |-
@@ -50516,8 +50518,10 @@ spec:
5051650518
type: object
5051750519
threshold:
5051850520
description: |-
50519-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50520-
upstream to be considered healthy.
50521+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50522+
must be available for the whole upstream to be considered healthy.
50523+
maximum: 100
50524+
minimum: 0
5052150525
type: integer
5052250526
type: object
5052350527
slots:
@@ -51080,7 +51084,7 @@ spec:
5108051084
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108151085
type: string
5108251086
healthchecks:
51083-
description: Healthchecks - The array of healthchecks.
51087+
description: Healthchecks is the configuration of upstream's healthchecks.
5108451088
properties:
5108551089
active:
5108651090
properties:
@@ -51200,6 +51204,9 @@ spec:
5120051204
required:
5120151205
- threshold
5120251206
type: object
51207+
x-kubernetes-validations:
51208+
- message: healthcheck threshold must be between 0 and 100
51209+
rule: self.threshold >= 0 && self.threshold <= 100
5120351210
host_header:
5120451211
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120551212
type: string

‎charts/kong-operator/ci/__snapshots__/env-and-customenv-values.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48989,7 +48989,9 @@ spec:
4898948989
name: v1alpha1
4899048990
schema:
4899148991
openAPIV3Schema:
48992-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48992+
description: |-
48993+
KongRoute is the schema for Routes API which defines a Kong Route.
48994+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899348995
properties:
4899448996
apiVersion:
4899548997
description: |-
@@ -50516,8 +50518,10 @@ spec:
5051650518
type: object
5051750519
threshold:
5051850520
description: |-
50519-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50520-
upstream to be considered healthy.
50521+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50522+
must be available for the whole upstream to be considered healthy.
50523+
maximum: 100
50524+
minimum: 0
5052150525
type: integer
5052250526
type: object
5052350527
slots:
@@ -51080,7 +51084,7 @@ spec:
5108051084
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108151085
type: string
5108251086
healthchecks:
51083-
description: Healthchecks - The array of healthchecks.
51087+
description: Healthchecks is the configuration of upstream's healthchecks.
5108451088
properties:
5108551089
active:
5108651090
properties:
@@ -51200,6 +51204,9 @@ spec:
5120051204
required:
5120151205
- threshold
5120251206
type: object
51207+
x-kubernetes-validations:
51208+
- message: healthcheck threshold must be between 0 and 100
51209+
rule: self.threshold >= 0 && self.threshold <= 100
5120351210
host_header:
5120451211
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120551212
type: string

‎charts/kong-operator/ci/__snapshots__/extra-labels-values.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48990,7 +48990,9 @@ spec:
4899048990
name: v1alpha1
4899148991
schema:
4899248992
openAPIV3Schema:
48993-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48993+
description: |-
48994+
KongRoute is the schema for Routes API which defines a Kong Route.
48995+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899448996
properties:
4899548997
apiVersion:
4899648998
description: |-
@@ -50517,8 +50519,10 @@ spec:
5051750519
type: object
5051850520
threshold:
5051950521
description: |-
50520-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50521-
upstream to be considered healthy.
50522+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50523+
must be available for the whole upstream to be considered healthy.
50524+
maximum: 100
50525+
minimum: 0
5052250526
type: integer
5052350527
type: object
5052450528
slots:
@@ -51081,7 +51085,7 @@ spec:
5108151085
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108251086
type: string
5108351087
healthchecks:
51084-
description: Healthchecks - The array of healthchecks.
51088+
description: Healthchecks is the configuration of upstream's healthchecks.
5108551089
properties:
5108651090
active:
5108751091
properties:
@@ -51201,6 +51205,9 @@ spec:
5120151205
required:
5120251206
- threshold
5120351207
type: object
51208+
x-kubernetes-validations:
51209+
- message: healthcheck threshold must be between 0 and 100
51210+
rule: self.threshold >= 0 && self.threshold <= 100
5120451211
host_header:
5120551212
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120651213
type: string

‎charts/kong-operator/ci/__snapshots__/image-pull-secrets-and-image-digest-values.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48989,7 +48989,9 @@ spec:
4898948989
name: v1alpha1
4899048990
schema:
4899148991
openAPIV3Schema:
48992-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48992+
description: |-
48993+
KongRoute is the schema for Routes API which defines a Kong Route.
48994+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899348995
properties:
4899448996
apiVersion:
4899548997
description: |-
@@ -50516,8 +50518,10 @@ spec:
5051650518
type: object
5051750519
threshold:
5051850520
description: |-
50519-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50520-
upstream to be considered healthy.
50521+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50522+
must be available for the whole upstream to be considered healthy.
50523+
maximum: 100
50524+
minimum: 0
5052150525
type: integer
5052250526
type: object
5052350527
slots:
@@ -51080,7 +51084,7 @@ spec:
5108051084
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108151085
type: string
5108251086
healthchecks:
51083-
description: Healthchecks - The array of healthchecks.
51087+
description: Healthchecks is the configuration of upstream's healthchecks.
5108451088
properties:
5108551089
active:
5108651090
properties:
@@ -51200,6 +51204,9 @@ spec:
5120051204
required:
5120151205
- threshold
5120251206
type: object
51207+
x-kubernetes-validations:
51208+
- message: healthcheck threshold must be between 0 and 100
51209+
rule: self.threshold >= 0 && self.threshold <= 100
5120351210
host_header:
5120451211
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120551212
type: string

‎charts/kong-operator/ci/__snapshots__/nightly-can-be-used-values.snap‎

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48989,7 +48989,9 @@ spec:
4898948989
name: v1alpha1
4899048990
schema:
4899148991
openAPIV3Schema:
48992-
description: KongRoute is the schema for Routes API which defines a Kong Route.
48992+
description: |-
48993+
KongRoute is the schema for Routes API which defines a Kong Route.
48994+
Currently, KongRoute supports only the JSON flavor of Route configuration.
4899348995
properties:
4899448996
apiVersion:
4899548997
description: |-
@@ -50516,8 +50518,10 @@ spec:
5051650518
type: object
5051750519
threshold:
5051850520
description: |-
50519-
Threshold is the minimum percentage of the upstream’s targets’ weight that must be available for the whole
50520-
upstream to be considered healthy.
50521+
Threshold is the minimum percentage of the upstream’s targets’ weight that
50522+
must be available for the whole upstream to be considered healthy.
50523+
maximum: 100
50524+
minimum: 0
5052150525
type: integer
5052250526
type: object
5052350527
slots:
@@ -51080,7 +51084,7 @@ spec:
5108051084
description: The name of the route URI capture to take the value from as hash input. Only required when `hash_on` is set to `uri_capture`.
5108151085
type: string
5108251086
healthchecks:
51083-
description: Healthchecks - The array of healthchecks.
51087+
description: Healthchecks is the configuration of upstream's healthchecks.
5108451088
properties:
5108551089
active:
5108651090
properties:
@@ -51200,6 +51204,9 @@ spec:
5120051204
required:
5120151205
- threshold
5120251206
type: object
51207+
x-kubernetes-validations:
51208+
- message: healthcheck threshold must be between 0 and 100
51209+
rule: self.threshold >= 0 && self.threshold <= 100
5120351210
host_header:
5120451211
description: The hostname to be used as `Host` header when proxying requests through Kong.
5120551212
type: string

0 commit comments

Comments
 (0)