Files
Derek Perkinsandk8s-ci-robot 41c6489a7c [stable/msoms] support custom tolerations (#5506)
* [stable/msoms] support custom tolerations

* [stable/msoms] bump minor version + add default []
2018-05-11 01:58:55 -07:00

38 lines
1.3 KiB
YAML

## Default values for omsagent.
## Microsoft OMS Agent image
## ref: https://github.com/Microsoft/OMS-docker/blob/master/ReleaseNote.md
omsagent:
image:
tag: 1.4.3-174
pullPolicy: IfNotPresent
dockerProviderVersion: 1.0.0-30
## To get your workspace id and key do the following
## - In the Azure Log Analytics portal, on the Overview page, click the Settings tile. Click the Connected Sources tab at the left and select "Linux Server" on the right hand side.
## - On the right of Workspace ID, click the copy icon and paste the ID into Notepad.
## - On the right of Primary Key, click the copy icon and paste the key into Notepad.
## For more information, please go [here.](https://docs.microsoft.com/en-us/azure/log-analytics/log-analytics-windows-agents#download-the-agent-setup-file-from-oms)
secret:
wsid: <your_workspace_id>
key: <your_workspace_key>
domain: opinsights.azure.com
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
requests:
cpu: 100m
memory: 512Mi
limits:
cpu: 500m
memory: 768Mi
# Node selector - default to Linux as cannot deploy OMS agent container to Windows nodes
nodeSelector:
beta.kubernetes.io/os: linux
# optional tolerations to handle custom taints
tolerations: []