# Docker image name image: "sstarcher/uchiwa" # Docker image tag imageTag: "0.22" # Image pull policy for the container pullPolicy: "IfNotPresent" # How many uchiwa containers to spawn replicaCount: 1 # How to publish the service http://kubernetes.io/docs/user-guide/services/#publishing-services---service-types serviceType: ClusterIP # Service port to expose Uchiwa on httpPort: 80 # If set to true, the service will be exposed via the Deis Router if setup https://github.com/deis/router deis: routable: false domains: uchiwa # CPU and Memory limit and request for Uchiwa resources: limits: memory: 50Mi requests: memory: 50Mi cpu: 10m # Uchiwa configuration https://docs.uchiwa.io/getting-started/configuration/ host: '0.0.0.0' port: 3000 refresh: 10 loglevel: info config: {} # Example config input below: # config: |- # { # "sensu": [ # { # "name": "Sensu", # "host": "YOUR-SENSU-HOST", # "port": UNQUOTED-SENSU-PORT # } # ], # "uchiwa": { # "host": "0.0.0.0", # "port": UNQUOTED-UCHIWA-PORT, # "refresh": 10, # "loglevel": "info" # } # }