github.com/hellofresh/janus@v0.0.0-20230925145208-ce8de8183c67/janus/values.yaml (about) 1 # Default values for janus. 2 # This is a YAML-formatted file. 3 # Declare variables to be passed into your templates. 4 5 nameOverride: "" 6 fullnameOverride: "" 7 8 deployment: 9 replicaCount: 2 10 minAvailable: 1 11 databaseDSN: "mongodb://janus-database:27017/janus" 12 labels: 13 app: janus 14 valuesFrom: 15 - name: POD_NAME 16 valueFrom: 17 fieldRef: 18 fieldPath: metadata.name 19 # podAnnotations: 20 # annotation-key: annotation-value 21 22 imagePullSecrets: [] 23 24 image: 25 repository: hellofreshtech/janus 26 tag: latest 27 pullPolicy: Always 28 29 service: 30 name: ops-gateway 31 type: ClusterIP 32 ports: 33 - protocol: TCP 34 port: 80 35 targetPort: 8080 36 name: http 37 - protocol: TCP 38 port: 443 39 targetPort: 8080 40 name: https 41 - protocol: TCP 42 port: 8081 43 targetPort: 8081 44 name: http-private 45 46 ingress: 47 enabled: false 48 name: ops-gateway 49 annotations: 50 nginx.ingress.kubernetes.io/force-ssl-redirect: "true" 51 hosts: 52 - host: gateway.sample.com 53 paths: 54 - path: / 55 port: 80 56 - host: admin-gateway.sample.com 57 paths: 58 - path: / 59 port: 8081 60 61 tls: [] 62 # - secretName: chart-example-tls 63 # hosts: 64 # - chart-example.local 65 66 resources: {} 67 # We usually recommend not to specify default resources and to leave this as a conscious 68 # choice for the user. This also increases chances charts run on environments with little 69 # resources, such as Minikube. If you do want to specify resources, uncomment the following 70 # lines, adjust them as necessary, and remove the curly braces after 'resources:'. 71 # limits: 72 # cpu: 100m 73 # memory: 128Mi 74 # requests: 75 # cpu: 100m 76 # memory: 128Mi 77 78 nodeSelector: {} 79 80 tolerations: [] 81 82 affinity: {}