Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update onboarding_instructions.md #456

Merged
merged 4 commits into from
Oct 12, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 20 additions & 4 deletions Health/onboarding_instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,28 @@ For on-boarding to Health(Tab), you would need to complete two steps


## Configure agent through ConfigMap
1. Include the following section in ConfigMap yaml file
```cmd:agent-settings: |-
[agent_settings.health_model]
1. If you are configuring your existing ConfigMap, append the following section in your existing ConfigMap yaml file
```
saaror marked this conversation as resolved.
Show resolved Hide resolved
#Append this section in your existing configmap
agent-settings: |-
# agent health model feature settings
[agent_settings.health_model]
# In the absence of this configmap, default value for enabled is false
enabled = true
```
2. Else if you don't have ConfigMap, download the new ConfigMap from [here.](https://github.com/microsoft/OMS-docker/blob/ci_feature_prod/Kubernetes/container-azm-ms-agentconfig.yaml) & then set `enabled =true`

```
#For new downloaded configmap enabled this default setting to true
agent-settings: |-
# agent health model feature settings
[agent_settings.health_model]
# In the absence of this configmap, default value for enabled is false
enabled = true
```
2. Run the following kubectl command:


3. Run the following kubectl command:
`kubectl apply -f <configmap_yaml_file.yaml>`

Example: `kubectl apply -f container-azm-ms-agentconfig.yaml`.
Expand Down