This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Update apt repository | |
sudo apt-get update | |
# Download and install the public signing key | |
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - | |
#Install apt repo sync | |
sudo apt-get install apt-transport-https | |
#Add elastic5.x to apt repository | |
echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list | |
#Update apt repository | |
sudo apt-get update |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: rbac.authorization.k8s.io/v1beta1 | |
kind: ClusterRole | |
metadata: | |
name: rabbit-pod-autoscaler | |
rules: | |
- apiGroups: ["*"] | |
resources: ["deployments"] | |
verbs: ["get", "list", "update"] | |
--- |
NewerOlder