You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/360/saas/get_started/register_node_agent.md
+21-7Lines changed: 21 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,9 +17,9 @@ You must define settings on the Node Management agent before defining skills and
17
17
18
18
## Register the Node Management agent
19
19
20
-
To register a Node Management agent, follow these steps:
20
+
To register the Node Management agent, follow these steps:
21
21
22
-
1. Create a file named `register-agent-skill.json` that contains the settings for Node Management agent to function:
22
+
1. Create a file named `register-agent-skill.json` that defines the Node Management agent settings:
23
23
24
24
```json
25
25
{
@@ -34,17 +34,31 @@ To register a Node Management agent, follow these steps:
34
34
35
35
Replace:
36
36
37
-
- `<HABITAT_BUILDER_URL>` with the Chef Habitat Builder URL. Use `https://bldr.habitat.sh` for Chef's Habitat Builder, or the URL of your own Habitat Builder deployment.
38
-
- `<CHANNEL>` with the release channel from which to install the skills. For example, `stable`.
37
+
- `<HABITAT_BUILDER_URL>` with the Chef Habitat Builder URL. Use `https://bldr.habitat.sh` for Chef's Habitat Builder or the URL of your own Habitat Builder deployment.
38
+
- `<CHANNEL>` with the release channel from which to install skills. For example, `stable`.
39
39
- `<TOKEN>` with the authentication token for Habitat Builder. If you're using Chef's Habitat Builder, set this to an empty string.
40
-
- `<CHECK_IN_INTERVAL>` with the interval (in seconds) at which check-in occurs. Value starting from `3600` (1 hr).
41
-
- `<UPDATE_SKILL_INTERVAL>` with the interval (in seconds) at which skill definitions will be updated. Value starting from `3600` (1 hr).
40
+
- `<CHECK_IN_INTERVAL>` with the interval (in seconds) at which check-in occurs. Value starting from `3600` (1 hour).
41
+
- `<UPDATE_SKILL_INTERVAL>` with the interval (in seconds) at which skill definitions are updated. Value starting from `3600` (1 hour).
42
42
- `<LOG_LEVEL>`: The logging level of the agent. For example, `debug`.
43
43
44
+
Supported log levels:
45
+
46
+
`debug`
47
+
: Reports detailed information that can aid in identifying issues or debugging a workload. This includes the info, warn, and error logs.
48
+
49
+
`info`
50
+
: Reports general information about the system's operations.
51
+
52
+
`warn`
53
+
: Reports potential failures, but the operation can continue functioning for the time being.
54
+
55
+
`error`
56
+
: Reports errors that prevent the execution of an operation.
0 commit comments