baseline/manifests/monitoring/zabbix-proxy.jsonnet

23 lines
532 B
Text

local app = import "../_templates/argocd_app.libsonnet";
[
app + {
name:: "zabbix-proxy",
namespace:: "monitoring",
chart:: "zabbix-helm-chrt",
repo:: "https://cdn.zabbix.com/zabbix/integrations/kubernetes-helm/7.0",
version:: "1.1.*",
values:: |||
zabbixAgent:
enabled: false
zabbixProxy:
nodeSelector:
node-role.kubernetes.io/master: "true"
env:
- name: ZBX_HOSTNAME
value: zabbix-proxy
- name: ZBX_SERVER_HOST
value: "zabbix.smsvc.net"
|||
}
]