-
Notifications
You must be signed in to change notification settings - Fork 2
Credentials
This is where the Kubernetes master server runs. You will need access to this if you want to perform any actions on the Kubernetes cluster. The secrets for the different services are also stored here so in order to lookup secrets, change secrets, or create new secrets you will need access to this machine. This machine also is where our system's monitoring is deployed, which includes a Grafana instance and Prometheus.
Ask Chad Dougherty
This is where all the production services are running. It is unlikely that you will need access to this machine because the pods can be managed from the Kubernetes master.
Ask Chad Dougherty
This is the service that creates all the data visualizations are created. In order to make changes to the Grafana dashboard on stats.noise.page you need to be an editor or admin.
In order to make someone an admin login with the admin account. The admin account is username: admin
password: lookup gf_admin_password
in the Kubernetes secrets. Once logged in as admin you can manage user roles and make anyone an editor/admin.
To get access to secrets you will need access to the Kubernets master server.
In order to see the value of a Kubernetes secret SSH into the Kubernetes master. Follow this guide to view the secret: https://kubernetes.io/docs/tasks/configmap-secret/managing-secret-using-kubectl/#decoding-secret
To create a new secret SSH into the Kubernetes master. In /data/secrets/
find the folder for the environment you want to create the secret in (i.e. production). In that folder create a new file and store your secret in that file. Finally, run the script associated with the namespace that your secret will be applied to (in most cases it will be performance
). The script will be /data/secrets/make_secrets_{namespace}.sh
.
The process for updating a secret is basically the same as creating a new secret. Instead of creating a new file and storing the value of the secret there, just update the already existing file and run the /data/secrets/make_secrets_{namespace}.sh
script.
Ask Andy Pavlo