Skip to content

Commit b79c3a7

Browse files
committed
dependencies update
1 parent f2a2f97 commit b79c3a7

File tree

5 files changed

+279
-213
lines changed

5 files changed

+279
-213
lines changed

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const (
5757
defaultMultitoolImage = "acrpdokprodman.azurecr.io/pdok/docker-multitool:0.9.4"
5858
defaultMapfileGeneratorImage = "acrpdokprodman.azurecr.io/pdok/mapfile-generator:1.9.5"
5959
defaultMapserverImage = "acrpdokprodman.azurecr.io/mirror/docker.io/pdok/mapserver:8.4.0-4-nl"
60-
defaultCapabilitiesGeneratorImage = "acrpdokprodman.azurecr.io/mirror/docker.io/pdok/ogc-capabilities-generator:1.0.0-beta8"
60+
defaultCapabilitiesGeneratorImage = "acrpdokprodman.azurecr.io/mirror/docker.io/pdok/ogc-capabilities-generator:1.0.0-beta9"
6161
defaultFeatureinfoGeneratorImage = "acrpdokprodman.azurecr.io/mirror/docker.io/pdok/featureinfo-generator:1.4.0-beta1"
6262
defaultOgcWebserviceProxyImage = "acrpdokprodman.azurecr.io/pdok/ogc-webservice-proxy:0.1.8"
6363
defaultApacheExporterImage = "acrpdokprodman.azurecr.io/mirror/docker.io/lusotycoon/apache-exporter:v0.7.0"

config/crd/bases/pdok.nl_wfs.yaml

Lines changed: 43 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,9 @@ spec:
475475
policies:
476476
description: |-
477477
policies is a list of potential scaling polices which can be used during scaling.
478-
At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
478+
If not set, use the default values:
479+
- For scale up: allow doubling the number of pods, or an absolute change of 4 pods in a 15s window.
480+
- For scale down: allow all pods to be removed in a 15s window.
479481
items:
480482
description: HPAScalingPolicy is a single policy which must hold true for a specified past interval.
481483
properties:
@@ -516,6 +518,24 @@ spec:
516518
- For scale down: 300 (i.e. the stabilization window is 300 seconds long).
517519
format: int32
518520
type: integer
521+
tolerance:
522+
anyOf:
523+
- type: integer
524+
- type: string
525+
description: |-
526+
tolerance is the tolerance on the ratio between the current and desired
527+
metric value under which no updates are made to the desired number of
528+
replicas (e.g. 0.01 for 1%). Must be greater than or equal to zero. If not
529+
set, the default cluster-wide tolerance is applied (by default 10%).
530+
531+
For example, if autoscaling is configured with a memory consumption target of 100Mi,
532+
and scale-down and scale-up tolerances of 5% and 1% respectively, scaling will be
533+
triggered when the actual consumption falls below 95Mi or exceeds 101Mi.
534+
535+
This is an alpha field and requires enabling the HPAConfigurableTolerance
536+
feature gate.
537+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
538+
x-kubernetes-int-or-string: true
519539
type: object
520540
scaleUp:
521541
description: |-
@@ -528,7 +548,9 @@ spec:
528548
policies:
529549
description: |-
530550
policies is a list of potential scaling polices which can be used during scaling.
531-
At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
551+
If not set, use the default values:
552+
- For scale up: allow doubling the number of pods, or an absolute change of 4 pods in a 15s window.
553+
- For scale down: allow all pods to be removed in a 15s window.
532554
items:
533555
description: HPAScalingPolicy is a single policy which must hold true for a specified past interval.
534556
properties:
@@ -569,6 +591,24 @@ spec:
569591
- For scale down: 300 (i.e. the stabilization window is 300 seconds long).
570592
format: int32
571593
type: integer
594+
tolerance:
595+
anyOf:
596+
- type: integer
597+
- type: string
598+
description: |-
599+
tolerance is the tolerance on the ratio between the current and desired
600+
metric value under which no updates are made to the desired number of
601+
replicas (e.g. 0.01 for 1%). Must be greater than or equal to zero. If not
602+
set, the default cluster-wide tolerance is applied (by default 10%).
603+
604+
For example, if autoscaling is configured with a memory consumption target of 100Mi,
605+
and scale-down and scale-up tolerances of 5% and 1% respectively, scaling will be
606+
triggered when the actual consumption falls below 95Mi or exceeds 101Mi.
607+
608+
This is an alpha field and requires enabling the HPAConfigurableTolerance
609+
feature gate.
610+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
611+
x-kubernetes-int-or-string: true
572612
type: object
573613
type: object
574614
maxReplicas:
@@ -1539,7 +1579,7 @@ spec:
15391579
type: array
15401580
operationResults:
15411581
additionalProperties:
1542-
description: OperationResult is the action result of a CreateOrUpdate call.
1582+
description: OperationResult is the action result of a CreateOrUpdate or CreateOrPatch call.
15431583
type: string
15441584
description: The result of creating or updating of each derived resource for this Atom.
15451585
type: object

config/crd/bases/pdok.nl_wms.yaml

Lines changed: 43 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,9 @@ spec:
552552
policies:
553553
description: |-
554554
policies is a list of potential scaling polices which can be used during scaling.
555-
At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
555+
If not set, use the default values:
556+
- For scale up: allow doubling the number of pods, or an absolute change of 4 pods in a 15s window.
557+
- For scale down: allow all pods to be removed in a 15s window.
556558
items:
557559
description: HPAScalingPolicy is a single policy which must hold true for a specified past interval.
558560
properties:
@@ -593,6 +595,24 @@ spec:
593595
- For scale down: 300 (i.e. the stabilization window is 300 seconds long).
594596
format: int32
595597
type: integer
598+
tolerance:
599+
anyOf:
600+
- type: integer
601+
- type: string
602+
description: |-
603+
tolerance is the tolerance on the ratio between the current and desired
604+
metric value under which no updates are made to the desired number of
605+
replicas (e.g. 0.01 for 1%). Must be greater than or equal to zero. If not
606+
set, the default cluster-wide tolerance is applied (by default 10%).
607+
608+
For example, if autoscaling is configured with a memory consumption target of 100Mi,
609+
and scale-down and scale-up tolerances of 5% and 1% respectively, scaling will be
610+
triggered when the actual consumption falls below 95Mi or exceeds 101Mi.
611+
612+
This is an alpha field and requires enabling the HPAConfigurableTolerance
613+
feature gate.
614+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
615+
x-kubernetes-int-or-string: true
596616
type: object
597617
scaleUp:
598618
description: |-
@@ -605,7 +625,9 @@ spec:
605625
policies:
606626
description: |-
607627
policies is a list of potential scaling polices which can be used during scaling.
608-
At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
628+
If not set, use the default values:
629+
- For scale up: allow doubling the number of pods, or an absolute change of 4 pods in a 15s window.
630+
- For scale down: allow all pods to be removed in a 15s window.
609631
items:
610632
description: HPAScalingPolicy is a single policy which must hold true for a specified past interval.
611633
properties:
@@ -646,6 +668,24 @@ spec:
646668
- For scale down: 300 (i.e. the stabilization window is 300 seconds long).
647669
format: int32
648670
type: integer
671+
tolerance:
672+
anyOf:
673+
- type: integer
674+
- type: string
675+
description: |-
676+
tolerance is the tolerance on the ratio between the current and desired
677+
metric value under which no updates are made to the desired number of
678+
replicas (e.g. 0.01 for 1%). Must be greater than or equal to zero. If not
679+
set, the default cluster-wide tolerance is applied (by default 10%).
680+
681+
For example, if autoscaling is configured with a memory consumption target of 100Mi,
682+
and scale-down and scale-up tolerances of 5% and 1% respectively, scaling will be
683+
triggered when the actual consumption falls below 95Mi or exceeds 101Mi.
684+
685+
This is an alpha field and requires enabling the HPAConfigurableTolerance
686+
feature gate.
687+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
688+
x-kubernetes-int-or-string: true
649689
type: object
650690
type: object
651691
maxReplicas:
@@ -2200,7 +2240,7 @@ spec:
22002240
type: array
22012241
operationResults:
22022242
additionalProperties:
2203-
description: OperationResult is the action result of a CreateOrUpdate call.
2243+
description: OperationResult is the action result of a CreateOrUpdate or CreateOrPatch call.
22042244
type: string
22052245
description: The result of creating or updating of each derived resource for this Atom.
22062246
type: object

0 commit comments

Comments
 (0)