Skip to content
Snippets Groups Projects
Unverified Commit 84878713 authored by Eric Horst's avatar Eric Horst Committed by GitHub
Browse files

Update README.md with apply clarification.

Update the kubectl apply commands in the customizing section to match those the quickstart section. The customizing section did not account for the recently introduced setup/ subdirectory.
parent ce5fe790
No related branches found
No related tags found
No related merge requests found
...@@ -236,8 +236,13 @@ The previous steps (compilation) has created a bunch of manifest files in the ma ...@@ -236,8 +236,13 @@ The previous steps (compilation) has created a bunch of manifest files in the ma
Now simply use `kubectl` to install Prometheus and Grafana as per your configuration: Now simply use `kubectl` to install Prometheus and Grafana as per your configuration:
```shell ```shell
# Update the namespace and CRDs, and then wait for them to be availble before creating the remaining resources
$ kubectl apply -f manifests/setup
$ kubectl apply -f manifests/ $ kubectl apply -f manifests/
``` ```
Alternatively, the resources in both folders can be applied with a single command
`kubectl apply -Rf manifests`, but it may be necessary to run the command multiple times for all components to
be created successfullly.
Check the monitoring namespace (or the namespace you have specific in `namespace: `) and make sure the pods are running. Prometheus and Grafana should be up and running soon. Check the monitoring namespace (or the namespace you have specific in `namespace: `) and make sure the pods are running. Prometheus and Grafana should be up and running soon.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment