params.libsonnet 533 B

123456789101112131415161718
  1. {
  2. global: {
  3. // User-defined global parameters; accessible to all component and environments, Ex:
  4. // replicas: 4,
  5. },
  6. components: {
  7. // Component-level parameters, defined initially from 'ks prototype use ...'
  8. // Each object below should correspond to a component in the components/ directory
  9. "guestbook-ui": {
  10. containerPort: 80,
  11. image: "gcr.io/heptio-images/ks-guestbook-demo:0.2",
  12. name: "ks-guestbook-ui",
  13. replicas: 1,
  14. servicePort: 80,
  15. type: "LoadBalancer",
  16. },
  17. },
  18. }