github.com/argoproj/argo-cd@v1.8.7/test/e2e/testdata/ksonnet/components/params.libsonnet (about)

     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: 0,
    14        servicePort: 80,
    15        type: "ClusterIP",
    16        command: null,
    17      },
    18    },
    19  }