You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
745 B

  1. replicaCount: 1
  2. clusterName: eshop-aks
  3. pathBase: /webshoppingapigw
  4. image:
  5. repository: envoyproxy/envoy
  6. tag: v1.21.0
  7. service:
  8. type: ClusterIP
  9. port: 80
  10. adminPort: 8001
  11. ingress:
  12. enabled: true
  13. annotations:
  14. kubernetes.io/ingress.class: nginx
  15. nginx.ingress.kubernetes.io/rewrite-target: /$2
  16. nginx.ingress.kubernetes.io/use-regex: "true"
  17. tls: []
  18. resources: {}
  19. nodeSelector: {}
  20. tolerations: []
  21. affinity: {}
  22. # env defines the environment variables that will be declared in the pod
  23. env: {}
  24. envoy:
  25. configPath: /etc/envoy
  26. probes:
  27. liveness:
  28. path: /ready
  29. initialDelaySeconds: 5
  30. periodSeconds: 15
  31. port: 8001
  32. readiness:
  33. path: /ready
  34. initialDelaySeconds: 5
  35. periodSeconds: 60
  36. port: 8001