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

20 lines
553 B
Plaintext
Raw Normal View History

2018-07-09 10:20:35 +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
2018-12-08 12:51:53 +01:00
"bg-guestbook": {
2018-07-09 10:20:35 +02:00
containerPort: 80,
2018-07-12 03:57:51 +02:00
image: "gcr.io/heptio-images/ks-guestbook-demo:0.2",
2018-12-08 12:51:53 +01:00
name: "bg-guestbook",
replicas: 3,
2018-07-09 10:20:35 +02:00
servicePort: 80,
2018-12-08 12:51:53 +01:00
type: "LoadBalancer",
2018-07-09 10:20:35 +02:00
},
2018-12-08 12:51:53 +01:00
"bg-workflow": {},
2018-07-09 10:20:35 +02:00
},
}