RealTheory can notify you if KEDA is a required component in your environment that is not present on your cluster or if the version of KEDA that is installed is not in compliance with organizational standards.
If KEDA is a required component in your Kubernetes environment, it is most likely that the Helm Chart or the manifest file needed for the installation already exist. Contact your Operations or DevOps team to determine if there are company resources for installing KEDA BEFORE using either of the following procedures.
To install KEDA:
helm repo add kedacore https://kedacore.github.io/charts helm repo updatehelm install keda kedacore/kedahelm install keda kedacore/keda --version <version> where is the version number of KEDA you want to install.<version>kubectl get pods -n <namespace> <namespace> is the namespace where KEDA was installed. To install KEDA:
kubectl apply -f https://github.com/kedacore/keda/releases/latest/download/keda-full.yamlkubectl get pods -n <namespace> <namespace> is the namespace where KEDA was installed. If a specific version of KEDA is required in your Kubernetes environment, it is most likely that the Helm Chart or the manifest file already exist. Contact your Operations or DevOps team to determine if there are company resources for upgrading KEDA BEFORE using either of the following procedures.
To upgrade KEDA:
helm upgrade <release-name> kedacore/keda <release-name> is the name of the KEDA release.helm upgrade <release-name> kedacore/keda --version <version> <release-name> is the name of the KEDA release and <version> is the version number of KEDA you want to upgrade to.kubectl get pods -n <namespace> <namespace> is the namespace where KEDA is installed. To upgrade KEDA:
kubectl apply -f https://github.com/kedacore/keda/releases/download/<version>/keda-full.yaml <version> is the version number of KEDA you want to upgrade to.kubectl get pods -n <namespace> <namespace> is the namespace where KEDA is installed. Search for a command to run...