mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
* Take into account number of unavailable replicas to decided if deployment is healthy or not * Run one controller for all e2e tests to reduce tests duration * Apply reviewer notes: use logic from kubectl/rollout_status.go to check deployment health
19 lines
548 B
Text
19 lines
548 B
Text
{
|
|
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
|
|
"guestbook-ui": {
|
|
containerPort: 80,
|
|
image: "gcr.io/heptio-images/ks-guestbook-demo:0.2",
|
|
name: "guestbook-ui",
|
|
replicas: 1,
|
|
servicePort: 80,
|
|
type: "ClusterIP",
|
|
command: null,
|
|
},
|
|
},
|
|
}
|