values.yaml 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. # This file disables all defaults for the common-test chart.
  2. # This is to have common test cases without getting affected
  3. # by any default values.
  4. workload:
  5. main:
  6. enabled: false
  7. podSpec:
  8. containers:
  9. main:
  10. enabled: false
  11. service:
  12. main:
  13. enabled: false
  14. ports:
  15. main:
  16. enabled: false
  17. # The above just disables the "main" objects,
  18. # every other config is stays as it is set in common's values.yaml.
  19. # Tests need to use a different name, other than `main`,
  20. # so they don't "inherit" values from common.
  21. # The above just makes it easier to test with specific values,
  22. # set on each test case, without having to worry about pre-defined values.
  23. # TODO:
  24. # It will be a test case using a different values.yaml (default-values.yaml),
  25. # that do not disable any objects. So we can make sure that defaults apply.
  26. # Everything disabled above, must be explicitly enabled in the default-values.yaml
  27. # As helm first applies values.yaml and then the specified values file,
  28. # in this case default-values.yaml