server.yaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # Default values for docker-template.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4. auto_deploy: true
  5. replicaCount: 1
  6. terminationGracePeriodSeconds: 30
  7. image:
  8. repository: porter1/porter-server
  9. pullPolicy: Always
  10. # Overrides the image tag whose default is the chart appVersion.
  11. tag: latest
  12. service:
  13. port: 8080
  14. ingress:
  15. enabled: false
  16. hosts: []
  17. porter_hosts: []
  18. provider: aws
  19. custom_domain: false
  20. custom_paths: []
  21. rewriteCustomPathsEnabled: true
  22. annotations: {}
  23. wildcard: false
  24. tls: true
  25. useDefaultIngressTLSSecret: false
  26. container:
  27. port: 8080
  28. command: porter
  29. args: ""
  30. env:
  31. normal:
  32. lifecycle:
  33. postStart:
  34. preStop:
  35. resources:
  36. requests:
  37. cpu: 500m
  38. memory: 512Mi
  39. health:
  40. livenessProbe:
  41. enabled: false
  42. path: "/livez"
  43. scheme: "HTTP"
  44. initialDelaySeconds: 0
  45. periodSeconds: 5
  46. timeoutSeconds: 1
  47. successThreshold: 1
  48. failureThreshold: 3
  49. auth:
  50. enabled: false
  51. username: ""
  52. password: ""
  53. livenessCommand:
  54. enabled: false
  55. command: "ls -l"
  56. initialDelaySeconds: 5
  57. periodSeconds: 5
  58. timeoutSeconds: 1
  59. successThreshold: 1
  60. failureThreshold: 3
  61. readinessProbe:
  62. enabled: false
  63. path: "/readyz"
  64. scheme: "HTTP"
  65. initialDelaySeconds: 0
  66. periodSeconds: 5
  67. timeoutSeconds: 1
  68. successThreshold: 1
  69. failureThreshold: 3
  70. auth:
  71. enabled: false
  72. username: ""
  73. password: ""
  74. startupProbe:
  75. enabled: false
  76. path: "/startupz"
  77. scheme: "HTTP"
  78. failureThreshold: 3
  79. periodSeconds: 5
  80. timeoutSeconds: 1
  81. auth:
  82. enabled: false
  83. username: ""
  84. password: ""
  85. emptyDir:
  86. enabled: false
  87. mountPath: /local
  88. podSecurityContext:
  89. runAsNonRoot: false
  90. runAsUser: 0
  91. server:
  92. gitlab:
  93. enabled: true