Deploy PulseAXN Agent on Kubernetes

Deploy Pulseaxn (Actions Agent) into a Kubernetes cluster in the same namespace as Pulse using the Manager Server deploy addons API, then configure hostname settings via deployment environment variables.

Prerequisites

  • Pulse is already deployed in the target Kubernetes cluster.

  • You have:

    • Manager Server Ingress API endpoint
    • <clustername> as registered in the Manager Server
    • Credentials for the API (-u user:token)
  • kubectl access to the cluster.

  • Target namespace (referred to below as <pulse_namespace>).

Step 1: Deploy Pulseaxn agent using the Deploy Addons API

Run the deploy addons API call:

Bash
Copy

Notes:

  • addons must be a valid list entry for the Manager Server. Use the exact string expected by your build (example shown: "ACTIONS AGENT").
  • extra_hosts is optional; use it when you need static hostname-to-IP mapping (for environments without stable DNS resolution).

Step 2: Confirm the Pulseaxn agent pod is deployed

List resources in the Pulse namespace:

Bash
Copy

Expected:

  • A deployment named similar to ad-axnagent
  • A running pod created from that deployment

Step 3: Update deployment environment variables (hostname settings)

Edit the deployment:

Bash
Copy

Add PULSE_HOSTNAME

Under the container env: section, add:

Bash
Copy

Set PULSE_HOSTNAME to a unique value to identify this agent instance.

Change AXN_HOSTNAME_METHOD from CMD to ENV

Find and update:

Bash
Copy

Save and exit. Kubernetes will roll out an updated ReplicaSet and start a new pod automatically.

Type to search, ESC to discard
Type to search, ESC to discard
Type to search, ESC to discard