$ cat zabbix-webservice.yaml apiVersion: apps/v1 kind: Deployment metadata: labels: app: zabbix name: zabbix-webservice namespace: zabbix spec: selector: matchLabels: app: zabbix template: metadata: labels: app: zabbix spec: containers: - env: - name: ZBX_ALLOWEDIP value: ::/0 image: zabbix/zabbix-web-service:ol-6.2-latest imagePullPolicy: IfNotPresent name: zabbix-webservice ports: - containerPort: 10053 name: webservice protocol: TCP resources: {} restartPolicy: Always securityContext: {}