mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
* [stable/uchiwa] Use configmap for uchiwa config file There is a default value as per default file we had before this PR. Now the value of the config file is overidable through configmap. Signed-off-by: Michael Inthilith <minthilith@gmail.com> * Fix maintainer for linting purpose Signed-off-by: Michael Inthilith <minthilith@gmail.com> * bump version to 1.0.0 since we're in stable we might as well track a stable semvar version Signed-off-by: Paul Czarkowski <username.taken@gmail.com>
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
# 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"
|
|
# }
|
|
# }
|