From a33daec49aaa8120331fdb9a07bea4c6916e2c85 Mon Sep 17 00:00:00 2001 From: portswigger-tim Date: Mon, 13 Feb 2023 10:30:38 +0000 Subject: [PATCH] Apply automatic changes --- .../bitnami-grafana-operator-crds/Chart.yaml | 2 +- .../bitnami-kube-prometheus-crds/Chart.yaml | 2 +- .../grafana-mimir-distributed-crds/Chart.yaml | 2 +- charts/karpenter-karpenter-crds/Chart.yaml | 2 +- .../karpenter.k8s.aws_awsnodetemplates.yaml | 40 +++++++++++++++---- .../templates/karpenter.sh_provisioners.yaml | 35 ++++++++++++---- 6 files changed, 65 insertions(+), 18 deletions(-) diff --git a/charts/bitnami-grafana-operator-crds/Chart.yaml b/charts/bitnami-grafana-operator-crds/Chart.yaml index 248c93c..8f3b508 100644 --- a/charts/bitnami-grafana-operator-crds/Chart.yaml +++ b/charts/bitnami-grafana-operator-crds/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v2 appVersion: 0.0.0 name: bitnami-grafana-operator-crds type: application -version: 2.7.17 +version: 2.7.18 diff --git a/charts/bitnami-kube-prometheus-crds/Chart.yaml b/charts/bitnami-kube-prometheus-crds/Chart.yaml index 9f55e0e..fb0b0e0 100644 --- a/charts/bitnami-kube-prometheus-crds/Chart.yaml +++ b/charts/bitnami-kube-prometheus-crds/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v2 appVersion: 0.0.0 name: bitnami-kube-prometheus-crds type: application -version: 8.3.2 +version: 8.3.5 diff --git a/charts/grafana-mimir-distributed-crds/Chart.yaml b/charts/grafana-mimir-distributed-crds/Chart.yaml index 2f2b71e..bc39d80 100644 --- a/charts/grafana-mimir-distributed-crds/Chart.yaml +++ b/charts/grafana-mimir-distributed-crds/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v2 appVersion: 0.0.0 name: grafana-mimir-distributed-crds type: application -version: 4.1.0-weekly.224 +version: 4.1.0 diff --git a/charts/karpenter-karpenter-crds/Chart.yaml b/charts/karpenter-karpenter-crds/Chart.yaml index d2d3da2..4b73264 100644 --- a/charts/karpenter-karpenter-crds/Chart.yaml +++ b/charts/karpenter-karpenter-crds/Chart.yaml @@ -2,4 +2,4 @@ apiVersion: v2 appVersion: 0.0.0 name: karpenter-karpenter-crds type: application -version: v0.23.0 +version: v0.24.0 diff --git a/charts/karpenter-karpenter-crds/templates/karpenter.k8s.aws_awsnodetemplates.yaml b/charts/karpenter-karpenter-crds/templates/karpenter.k8s.aws_awsnodetemplates.yaml index 84bc335..ac1cbd1 100644 --- a/charts/karpenter-karpenter-crds/templates/karpenter.k8s.aws_awsnodetemplates.yaml +++ b/charts/karpenter-karpenter-crds/templates/karpenter.k8s.aws_awsnodetemplates.yaml @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.8.0 + controller-gen.kubebuilder.io/version: v0.11.2 creationTimestamp: null name: awsnodetemplates.karpenter.k8s.aws spec: @@ -217,14 +217,40 @@ spec: being provisioned with the correct configuration. type: string type: object + status: + description: AWSNodeTemplateStatus contains the resolved state of the + AWSNodeTemplate + properties: + securityGroups: + description: SecurityGroups contains the current Security Groups values + that are available to the cluster under the SecurityGroups selectors. + items: + description: SecurityGroupStatus contains resolved SecurityGroup + selector values utilized for node launch + properties: + id: + description: Id of the security group + type: string + type: object + type: array + subnets: + description: Subnets contains the current Subnet values that are available + to the cluster under the subnet selectors. + items: + description: SubnetStatus contains resolved Subnet selector values + utilized for node launch + properties: + id: + description: Id of the subnet + type: string + zone: + description: The associated availability zone + type: string + type: object + type: array + type: object type: object served: true storage: true subresources: status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] diff --git a/charts/karpenter-karpenter-crds/templates/karpenter.sh_provisioners.yaml b/charts/karpenter-karpenter-crds/templates/karpenter.sh_provisioners.yaml index b7dc230..c216778 100644 --- a/charts/karpenter-karpenter-crds/templates/karpenter.sh_provisioners.yaml +++ b/charts/karpenter-karpenter-crds/templates/karpenter.sh_provisioners.yaml @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.8.0 + controller-gen.kubebuilder.io/version: v0.11.2 creationTimestamp: null name: provisioners.karpenter.sh spec: @@ -67,6 +67,10 @@ spec: description: ContainerRuntime is the container runtime to be used with your worker nodes. type: string + cpuCFSQuota: + description: CPUCFSQuota enables CPU CFS quota enforcement for + containers that specify CPU limits. + type: boolean evictionHard: additionalProperties: type: string @@ -91,6 +95,27 @@ spec: description: EvictionSoftGracePeriod is the map of signal names to quantities that define grace periods for each eviction signal type: object + imageGCHighThresholdPercent: + description: ImageGCHighThresholdPercent is the percent of disk + usage after which image garbage collection is always run. The + percent is calculated by dividing this field value by 100, so + this field must be between 0 and 100, inclusive. When specified, + the value must be greater than ImageGCLowThresholdPercent. + format: int32 + maximum: 100 + minimum: 0 + type: integer + imageGCLowThresholdPercent: + description: ImageGCLowThresholdPercent is the percent of disk + usage before which image garbage collection is never run. Lowest + disk usage to garbage collect to. The percent is calculated + by dividing this field value by 100, so the field value must + be between 0 and 100, inclusive. When specified, the value must + be less than imageGCHighThresholdPercent + format: int32 + maximum: 100 + minimum: 0 + type: integer kubeReserved: additionalProperties: anyOf: @@ -163,6 +188,8 @@ spec: name: description: 'Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names' type: string + required: + - name type: object requirements: description: Requirements are layered with Labels and applied to every @@ -345,9 +372,3 @@ spec: storage: true subresources: status: {} -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: []