https://github.com/framsouza/kubebuilder-scaler
Kubernetes controller that scale up deployments based on the time
https://github.com/framsouza/kubebuilder-scaler
golang kubebuilder kubernetes
Last synced: 3 months ago
JSON representation
Kubernetes controller that scale up deployments based on the time
- Host: GitHub
- URL: https://github.com/framsouza/kubebuilder-scaler
- Owner: framsouza
- Created: 2023-03-01T09:07:46.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T16:20:26.000Z (over 2 years ago)
- Last Synced: 2025-01-25T06:13:06.268Z (5 months ago)
- Topics: golang, kubebuilder, kubernetes
- Language: Go
- Homepage:
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kubernetes controller - Scaler
## Description
This is a Kubernetes controller that will scale up deployments based on the time defined in the CRD.
```
apiVersion: api.framsouza.co/v1alpha1
kind: Scaler
metadata:
name: scaler-sample
spec:
start: "9:00"
end: "10:15"
replicas: 5
deployments:
- name: nginx
namespace: default
```