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.
@@ -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(" Get your routing key: PagerDuty Services Integrations → Events API v2\n"));
134
- const routing_key = await ask("Routing key");
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");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kubeagent",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "AI-powered Kubernetes management CLI",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "type": "module",