-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install prometheus on local clusters (2/4)
related to #124 I want to check metrics that will be implemented. That's why I'm adding the option to install prometheus on both clusters with `make deploy-prometheus`. Such deployed prometheus scrapes metrics of k8gb operator and is accessible directly from the browser: - http://127.0.0.1:8080 - test-gslb1 - http://127.0.0.1:8081 - test-gslb2 Co-authored-by: Timofey Ilinykh <[email protected]> Signed-off-by: kuritka <[email protected]>
- Loading branch information
Showing
6 changed files
with
78 additions
and
2 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
server: | ||
enabled: true | ||
service: | ||
nodePort: 30090 # allowed port range between 30000 and 32768 | ||
servicePort: 9090 | ||
type: NodePort | ||
|
||
alertmanager: | ||
enabled: false | ||
# service: | ||
# nodePort: 30091 # allowed port range between 30000 and 32768 | ||
# servicePort: 9091 | ||
# type: NodePort | ||
|
||
pushgateway: | ||
enabled: false | ||
# service: | ||
# nodePort: 30092 # allowed port range between 30000 and 32768 | ||
# servicePort: 9092 | ||
# type: NodePort |
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
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