Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[src] adding the ability to perform CRUD operations over HPAs from controller-v2 as part of the automatic rightsizing feature #147

Merged
merged 5 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions charts/ocean-kubernetes-controller/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: ocean-kubernetes-controller
description: A Helm chart for Ocean Kubernetes Controller
type: application
version: 0.1.50
appVersion: 2.0.64
version: 0.1.51
appVersion: 2.0.65
kubeVersion: ">=1.20.0-0"
maintainers:
- name: spotinst
Expand Down
2 changes: 1 addition & 1 deletion charts/ocean-kubernetes-controller/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ocean-kubernetes-controller

![Version: 0.1.50](https://img.shields.io/badge/Version-0.1.50-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.64](https://img.shields.io/badge/AppVersion-2.0.64-informational?style=flat-square)
![Version: 0.1.51](https://img.shields.io/badge/Version-0.1.51-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.65](https://img.shields.io/badge/AppVersion-2.0.65-informational?style=flat-square)

A Helm chart for Ocean Kubernetes Controller.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ rules:
- apiGroups: ["autoscaling.k8s.io"]
resources: ["verticalpodautoscalers", "verticalpodautoscalers/status"]
verbs: ["get", "list", "watch", "patch", "update", "create", "delete"]
- apiGroups: ["autoscaling.k8s.io"]
resources: ["horizontalpodautoscalers", "horizontalpodautoscalers/status"]
verbs: ["patch", "update"]
{{- end }}
# ---------------------------------------------------------------------------
# feature: controller/leader-election (high-availability)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ spec:
imagePullPolicy: {{ .Values.image.pullPolicy }}
args:
{{- range .Values.args }}
- {{ . }}
- {{ . }}
{{- end }}
{{- if eq (include "ocean-kubernetes-controller.logShipping.enabled" .) "true" }}
- --log_to_file
Expand Down
Loading