marcells/node-build-monitor

View on GitHub
charts/build-monitor/values.yaml

Summary

Maintainability
Test Coverage
# Default values for build-monitor.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

image:
  repository: marcells/node-build-monitor
  tag: latest
  pullPolicy: IfNotPresent

nameOverride:
fullnameOverride:

# env var for port
port: 3000

# env var to reject tls
rejectTls: 1

# json config (config.json in app)
config: |
  {
    "monitor": {
      "interval": 30000,
      "numberOfBuilds": 12,
      "latestBuildOnly": false,
      "sortOrder": "date",
      "errorsFirst": false,
      "expandEnvironmentVariables": false,
      "debug": true
    },
    "services": [
      {
        "name": "Travis",
        "configuration": {
          "slug": "node-build-monitor"
        }
      },
      {
        "name": "Travis",
        "configuration": {
          "slug": "marcells/bloggy",
          "latestBuildOnly": true
        }
      }
    ]
  }

service:
  type: ClusterIP
  port: 80

ingress:
  enabled: false
  annotations: {}
    # kubernetes.io/ingress.class: nginx
    # kubernetes.io/tls-acme: true
  path: /
  hosts:
    - build-monitor.local
  tls: []
  #  - secretName: build-monitor-tls
  #    hosts:
  #      - build-monitor.local

resources: {}
  # We usually recommend not to specify default resources and to leave this as a conscious
  # choice for the user. This also increases chances charts run on environments with little
  # resources, such as Minikube. If you do want to specify resources, uncomment the following
  # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  # limits:
  #  cpu: 100m
  #  memory: 128Mi
  # requests:
  #  cpu: 100m
  #  memory: 128Mi

nodeSelector: {}

tolerations: []

affinity: {}