- Install RUDR
- As infrastructure operator install Ingress and KEDA
- As developer declare component schematic
- As application operator define instance details and deploy
- Cleanup
git clone https://github.com/oam-dev/rudr.git
helm install rudr rudr/charts/rudr --wait --set image.tag=latest
helm repo add stable https://kubernetes-charts.storage.googleapis.com/ helm repo update helm install nginx-ingress stable/nginx-ingress
helm repo add kedacore https://kedacore.github.io/charts helm repo update kubectl create namespace keda helm install keda kedacore/keda --namespace keda
kubectl apply -f components.yaml kubectl get componentschematic
kubectl apply -f applicationConfig.yaml
kubectl delete -f applicationConfig.yaml kubectl delete -f components.yaml helm delete rudr