Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. # Default values for helloworld.
  2. # This is a YAML-formatted file.
  3. # Declare variables to be passed into your templates.
  4.  
  5. replicaCount: 2
  6.  
  7. image:
  8. repository: k8s.gcr.io/echoserver
  9. tag: "1.10"
  10. pullPolicy: IfNotPresent
  11.  
  12. nameOverride: ""
  13. fullnameOverride: ""
  14.  
  15. service:
  16. type: ClusterIP
  17. port: 8080
  18.  
  19. ingress:
  20. enabled: true
  21. annotations:
  22. kubernetes.io/ingress.class: "haproxy"
  23. kubernetes.io/balance-algorithm: url_param teste
  24. certmanager.k8s.io/cluster-issuer: letsencrypt-production
  25. certmanager.k8s.io/acme-challenge-type: dns01
  26. certmanager.k8s.io/acme-dns01-provider: domain-ns-external-view
  27. path: /
  28. hosts:
  29. - lb-test.mydomain.com
  30. tls:
  31. - hosts:
  32. - lb-test.mydomain.com
  33. secretName: lb-test-tls
  34.  
  35. resources: {}
  36. # We usually recommend not to specify default resources and to leave this as a conscious
  37. # choice for the user. This also increases chances charts run on environments with little
  38. # resources, such as Minikube. If you do want to specify resources, uncomment the following
  39. # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  40. # limits:
  41. # cpu: 100m
  42. # memory: 128Mi
  43. # requests:
  44. # cpu: 100m
  45. # memory: 128Mi
  46.  
  47. nodeSelector: {}
  48.  
  49. tolerations: []
  50.  
  51. affinity: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement