An open API service indexing awesome lists of open source software.

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

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
```