values.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # Default values for porter-prod.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. replicaCount: 1
  5. image:
  6. repository: porteralpha/porter-prod
  7. pullPolicy: Always
  8. # Overrides the image tag whose default is the chart appVersion.
  9. tag: latest
  10. imagePullSecrets: []
  11. nameOverride: ""
  12. fullnameOverride: ""
  13. serviceAccount:
  14. # Specifies whether a service account should be created
  15. create: false
  16. # Annotations to add to the service account
  17. annotations: {}
  18. # The name of the service account to use.
  19. # If not set and create is true, a name is generated using the fullname template
  20. name: ""
  21. podAnnotations: {}
  22. podSecurityContext: {}
  23. # fsGroup: 2000
  24. securityContext: {}
  25. # capabilities:
  26. # drop:
  27. # - ALL
  28. # readOnlyRootFilesystem: true
  29. # runAsNonRoot: true
  30. # runAsUser: 1000
  31. service:
  32. type: NodePort
  33. port: 443
  34. ingress:
  35. enabled: true
  36. annotations: {}
  37. # kubernetes.io/ingress.class: nginx
  38. # kubernetes.io/tls-acme: "true"
  39. hosts:
  40. - host: dashboard.getporter.dev
  41. paths: ['/*']
  42. tls:
  43. - secretName: ingress-dashboard
  44. hosts:
  45. - dashboard.getporter.dev
  46. resources: {}
  47. # We usually recommend not to specify default resources and to leave this as a conscious
  48. # choice for the user. This also increases chances charts run on environments with little
  49. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  50. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  51. # limits:
  52. # cpu: 100m
  53. # memory: 128Mi
  54. # requests:
  55. # cpu: 100m
  56. # memory: 128Mi
  57. autoscaling:
  58. enabled: false
  59. minReplicas: 1
  60. maxReplicas: 100
  61. targetCPUUtilizationPercentage: 80
  62. # targetMemoryUtilizationPercentage: 80
  63. nodeSelector: {}
  64. tolerations: []
  65. affinity: {}