Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
This file contains hidden or 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
- name: custom_certmanager_monitoring | |
rules: | |
- alert: CertManagerAbsent | |
expr: absent(up{job="cert-manager"}) | |
for: 1h | |
annotations: | |
message: "Cert Manager has dissapeared from Prometheus service discovery." | |
labels: | |
severity: critical | |
- alert: CertManagerACMEProxyReachability |
First of we need the registry and mysql server installed so we can keep track on which services are available, download new services and also run the actual database.
sudo apt install -y default-mysql-server default-mysql-client etcd curl
Before we start this POC we disable the default services as we will be setting up our own.
Katrina Verey, Shopify
Visit Sched for the talk description, feedback form and slides.
This file contains hidden or 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
# Change these variables as necessary. | |
main_package_path = ./cmd/example | |
binary_name = example | |
# ==================================================================================== # | |
# HELPERS | |
# ==================================================================================== # | |
## help: print this help message | |
.PHONY: help |
OlderNewer