argocd-example-apps/blue-green-deploy/components/params.libsonnet

20 lines
556 B
Plaintext
Raw Normal View History

2018-06-29 10:26:59 +02:00
{
global: {
// User-defined global parameters; accessible to all component and environments, Ex:
// replicas: 4,
},
components: {
// Component-level parameters, defined initially from 'ks prototype use ...'
// Each object below should correspond to a component in the components/ directory
"bg-guestbook": {
containerPort: 80,
2018-07-06 21:54:20 +02:00
image: "gcr.io/heptio-images/ks-guestbook-demo:0.2",
2018-12-08 12:51:53 +01:00
name: "blue-green-guestbook",
2018-06-29 10:26:59 +02:00
replicas: 3,
servicePort: 80,
type: "LoadBalancer",
},
2018-12-08 12:51:53 +01:00
"bg-pod": {},
2018-06-29 10:26:59 +02:00
},
}