-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
monitoring deployment revision #65
Conversation
x-Xymos
commented
Sep 4, 2020
•
edited
Loading
edited
- Install grafana/prometheus/loki using helm
- Installs a local-path-provisioner which dynamically provisions PersistentVolumes rather than having to create them manually along with their required mount paths
- monitoring services are accessible from the ingress at a local domain - strims.monitoring.local
added links to chart sources
@slugalisk looking through the old files I noticed some pod constraints in there and to my understanding you intended for the core monitoring services to run on the master? I added that back in just in case
|
@x-Xymos yeah, the master node is the only one with enough memory/storage rn to not fall over hosting these. avoiding fragmenting infra setup by having everything in helm seems like a good idea but isn't local persistent volumes are part of kuberentes core now. should we still be using the local-path-provisioner? it's a bit annoying that it launched without automated provisioning but again i'm wondering which solution is going to continue to be supported... |
@slugalisk I believe the migration has been done for prometheus prometheus-community/community#28 (comment) https://github.com/prometheus-community/helm-charts Having automated local storage provisioning mimics the way a disk would be provisioned dynamically on the cloud without us taking special measures, it uses local persistent volumes and does the work of automatically creating the paths on the host.
|
oh sweet, nothing like waiting to the last possible moment. i didn't realize local-path was a wrapper around the core local-storage feature. thanks for clarifying. lgtm 👍 |