kubeagent 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/notify/setup.js +3 -2
- package/package.json +1 -1
package/dist/notify/setup.js
CHANGED
|
@@ -130,8 +130,9 @@ export async function setupWebhook() {
|
|
|
130
130
|
}
|
|
131
131
|
export async function setupPagerDuty() {
|
|
132
132
|
console.log(chalk.bold("\n PagerDuty Setup"));
|
|
133
|
-
console.log(chalk.dim("
|
|
134
|
-
|
|
133
|
+
console.log(chalk.dim(" Search for \"Events API v2\" (KubeAgent is a custom integration):"));
|
|
134
|
+
console.log(chalk.dim(" Services → Service Directory → [Service] → Integrations → Add another integration → Events API v2\n"));
|
|
135
|
+
const routing_key = await ask("Integration Key");
|
|
135
136
|
if (!routing_key)
|
|
136
137
|
return null;
|
|
137
138
|
const label = await ask("Label (optional)", "e.g. prod-cluster");
|