Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
portswigger-tim authored and github-actions[bot] committed Feb 13, 2023
1 parent 7fdbcb9 commit a33daec
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 18 deletions.
2 changes: 1 addition & 1 deletion charts/bitnami-grafana-operator-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion charts/bitnami-kube-prometheus-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion charts/grafana-mimir-distributed-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion charts/karpenter-karpenter-crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v2
appVersion: 0.0.0
name: karpenter-karpenter-crds
type: application
version: v0.23.0
version: v0.24.0
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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: []
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -345,9 +372,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []

0 comments on commit a33daec

Please sign in to comment.