diff --git a/cluster/monitoring/goldilocks.yaml b/cluster/monitoring/goldilocks.yaml index fe667f77f..a44d59ab1 100644 --- a/cluster/monitoring/goldilocks.yaml +++ b/cluster/monitoring/goldilocks.yaml @@ -26,3 +26,97 @@ spec: valuesFrom: - kind: ConfigMap name: helmrelease-monitoring-goldilocks +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: verticalpodautoscalers.autoscaling.k8s.io + annotations: + "api-approved.kubernetes.io": "https://github.com/kubernetes/kubernetes/pull/63797" +spec: + group: autoscaling.k8s.io + scope: Namespaced + names: + plural: verticalpodautoscalers + singular: verticalpodautoscaler + kind: VerticalPodAutoscaler + shortNames: + - vpa + version: v1beta1 + versions: + - name: v1beta1 + served: false + storage: false + - name: v1beta2 + served: true + storage: true + - name: v1 + served: true + storage: false + validation: + # openAPIV3Schema is the schema for validating custom objects. + openAPIV3Schema: + type: object + properties: + spec: + type: object + properties: + targetRef: + type: object + updatePolicy: + type: object + properties: + updateMode: + type: string + resourcePolicy: + type: object + properties: + containerPolicies: + type: array + items: + type: object + properties: + containerName: + type: string + controlledValues: + type: string + enum: ["RequestsAndLimits", "RequestsOnly"] + mode: + type: string + enum: ["Auto", "Off"] + minAllowed: + type: object + maxAllowed: + type: object + controlledResources: + type: array + items: + type: string + enum: ["cpu", "memory"] +--- +apiVersion: apiextensions.k8s.io/v1beta1 +kind: CustomResourceDefinition +metadata: + name: verticalpodautoscalercheckpoints.autoscaling.k8s.io + annotations: + "api-approved.kubernetes.io": "https://github.com/kubernetes/kubernetes/pull/63797" +spec: + group: autoscaling.k8s.io + scope: Namespaced + names: + plural: verticalpodautoscalercheckpoints + singular: verticalpodautoscalercheckpoint + kind: VerticalPodAutoscalerCheckpoint + shortNames: + - vpacheckpoint + version: v1beta1 + versions: + - name: v1beta1 + served: false + storage: false + - name: v1beta2 + served: true + storage: true + - name: v1 + served: true + storage: false \ No newline at end of file