chore: update rollouts to v1.1.0 (#966)
* chore: add changelog Signed-off-by: agill17 <amgill1234@gmail.com> * fix(argo-cd): Use correct chart icon url (#964) Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Signed-off-by: agill17 <amgill1234@gmail.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
965dccf732
commit
d6ec86fb65
6 changed files with 299 additions and 6 deletions
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: "v1.0.2"
|
appVersion: "v1.1.0"
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.1.1
|
version: 2.2.0
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
@ -11,4 +11,4 @@ maintainers:
|
||||||
- name: jessesuen
|
- name: jessesuen
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Two separate tests. One for default values and one for dashboard enabled."
|
- "[Changed]: updated rollouts version to 1.1.0 and updated CRDs to reflect the version bump"
|
||||||
|
|
|
@ -107,6 +107,59 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
provider:
|
provider:
|
||||||
properties:
|
properties:
|
||||||
|
cloudWatch:
|
||||||
|
properties:
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
metricDataQueries:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
expression:
|
||||||
|
type: string
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
label:
|
||||||
|
type: string
|
||||||
|
metricStat:
|
||||||
|
properties:
|
||||||
|
metric:
|
||||||
|
properties:
|
||||||
|
dimensions:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
value:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
metricName:
|
||||||
|
type: string
|
||||||
|
namespace:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
period:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
stat:
|
||||||
|
type: string
|
||||||
|
unit:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
period:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
returnData:
|
||||||
|
type: boolean
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- metricDataQueries
|
||||||
|
type: object
|
||||||
datadog:
|
datadog:
|
||||||
properties:
|
properties:
|
||||||
interval:
|
interval:
|
||||||
|
@ -116,6 +169,13 @@ spec:
|
||||||
required:
|
required:
|
||||||
- query
|
- query
|
||||||
type: object
|
type: object
|
||||||
|
graphite:
|
||||||
|
properties:
|
||||||
|
address:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
job:
|
job:
|
||||||
properties:
|
properties:
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -102,6 +102,59 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
provider:
|
provider:
|
||||||
properties:
|
properties:
|
||||||
|
cloudWatch:
|
||||||
|
properties:
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
metricDataQueries:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
expression:
|
||||||
|
type: string
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
label:
|
||||||
|
type: string
|
||||||
|
metricStat:
|
||||||
|
properties:
|
||||||
|
metric:
|
||||||
|
properties:
|
||||||
|
dimensions:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
value:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
metricName:
|
||||||
|
type: string
|
||||||
|
namespace:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
period:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
stat:
|
||||||
|
type: string
|
||||||
|
unit:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
period:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
returnData:
|
||||||
|
type: boolean
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- metricDataQueries
|
||||||
|
type: object
|
||||||
datadog:
|
datadog:
|
||||||
properties:
|
properties:
|
||||||
interval:
|
interval:
|
||||||
|
@ -111,6 +164,13 @@ spec:
|
||||||
required:
|
required:
|
||||||
- query
|
- query
|
||||||
type: object
|
type: object
|
||||||
|
graphite:
|
||||||
|
properties:
|
||||||
|
address:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
job:
|
job:
|
||||||
properties:
|
properties:
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -102,6 +102,59 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
provider:
|
provider:
|
||||||
properties:
|
properties:
|
||||||
|
cloudWatch:
|
||||||
|
properties:
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
metricDataQueries:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
expression:
|
||||||
|
type: string
|
||||||
|
id:
|
||||||
|
type: string
|
||||||
|
label:
|
||||||
|
type: string
|
||||||
|
metricStat:
|
||||||
|
properties:
|
||||||
|
metric:
|
||||||
|
properties:
|
||||||
|
dimensions:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
value:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
metricName:
|
||||||
|
type: string
|
||||||
|
namespace:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
period:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
stat:
|
||||||
|
type: string
|
||||||
|
unit:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
period:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
returnData:
|
||||||
|
type: boolean
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- metricDataQueries
|
||||||
|
type: object
|
||||||
datadog:
|
datadog:
|
||||||
properties:
|
properties:
|
||||||
interval:
|
interval:
|
||||||
|
@ -111,6 +164,13 @@ spec:
|
||||||
required:
|
required:
|
||||||
- query
|
- query
|
||||||
type: object
|
type: object
|
||||||
|
graphite:
|
||||||
|
properties:
|
||||||
|
address:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
job:
|
job:
|
||||||
properties:
|
properties:
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
@ -95,6 +95,9 @@ spec:
|
||||||
progressDeadlineSeconds:
|
progressDeadlineSeconds:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
scaleDownDelaySeconds:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
templates:
|
templates:
|
||||||
items:
|
items:
|
||||||
properties:
|
properties:
|
||||||
|
@ -129,6 +132,8 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
service:
|
||||||
|
type: object
|
||||||
template:
|
template:
|
||||||
properties:
|
properties:
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -2316,12 +2321,16 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
name:
|
name:
|
||||||
type: string
|
type: string
|
||||||
|
podTemplateHash:
|
||||||
|
type: string
|
||||||
readyReplicas:
|
readyReplicas:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
replicas:
|
replicas:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
serviceName:
|
||||||
|
type: string
|
||||||
status:
|
status:
|
||||||
type: string
|
type: string
|
||||||
updatedReplicas:
|
updatedReplicas:
|
||||||
|
|
|
@ -57,11 +57,22 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
spec:
|
spec:
|
||||||
properties:
|
properties:
|
||||||
|
analysis:
|
||||||
|
properties:
|
||||||
|
successfulRunHistoryLimit:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
unsuccessfulRunHistoryLimit:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
type: object
|
||||||
minReadySeconds:
|
minReadySeconds:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
paused:
|
paused:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
progressDeadlineAbort:
|
||||||
|
type: boolean
|
||||||
progressDeadlineSeconds:
|
progressDeadlineSeconds:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
@ -101,6 +112,9 @@ spec:
|
||||||
properties:
|
properties:
|
||||||
blueGreen:
|
blueGreen:
|
||||||
properties:
|
properties:
|
||||||
|
abortScaleDownDelaySeconds:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
activeMetadata:
|
activeMetadata:
|
||||||
properties:
|
properties:
|
||||||
annotations:
|
annotations:
|
||||||
|
@ -234,6 +248,9 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
canary:
|
canary:
|
||||||
properties:
|
properties:
|
||||||
|
abortScaleDownDelaySeconds:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
analysis:
|
analysis:
|
||||||
properties:
|
properties:
|
||||||
args:
|
args:
|
||||||
|
@ -298,6 +315,8 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
canaryService:
|
canaryService:
|
||||||
type: string
|
type: string
|
||||||
|
dynamicStableScale:
|
||||||
|
type: boolean
|
||||||
maxSurge:
|
maxSurge:
|
||||||
anyOf:
|
anyOf:
|
||||||
- type: integer
|
- type: integer
|
||||||
|
@ -452,6 +471,9 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
specRef:
|
specRef:
|
||||||
type: string
|
type: string
|
||||||
|
weight:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
required:
|
required:
|
||||||
- name
|
- name
|
||||||
- specRef
|
- specRef
|
||||||
|
@ -533,12 +555,46 @@ spec:
|
||||||
items:
|
items:
|
||||||
type: string
|
type: string
|
||||||
type: array
|
type: array
|
||||||
|
tlsRoutes:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
port:
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
sniHosts:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
required:
|
required:
|
||||||
- name
|
- name
|
||||||
- routes
|
|
||||||
type: object
|
type: object
|
||||||
|
virtualServices:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
routes:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
tlsRoutes:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
port:
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
sniHosts:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
required:
|
required:
|
||||||
- virtualService
|
- name
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
type: object
|
type: object
|
||||||
nginx:
|
nginx:
|
||||||
properties:
|
properties:
|
||||||
|
@ -2755,6 +2811,52 @@ spec:
|
||||||
- name
|
- name
|
||||||
- status
|
- status
|
||||||
type: object
|
type: object
|
||||||
|
weights:
|
||||||
|
properties:
|
||||||
|
additional:
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
podTemplateHash:
|
||||||
|
type: string
|
||||||
|
serviceName:
|
||||||
|
type: string
|
||||||
|
weight:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
required:
|
||||||
|
- weight
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
canary:
|
||||||
|
properties:
|
||||||
|
podTemplateHash:
|
||||||
|
type: string
|
||||||
|
serviceName:
|
||||||
|
type: string
|
||||||
|
weight:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
required:
|
||||||
|
- weight
|
||||||
|
type: object
|
||||||
|
stable:
|
||||||
|
properties:
|
||||||
|
podTemplateHash:
|
||||||
|
type: string
|
||||||
|
serviceName:
|
||||||
|
type: string
|
||||||
|
weight:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
required:
|
||||||
|
- weight
|
||||||
|
type: object
|
||||||
|
verified:
|
||||||
|
type: boolean
|
||||||
|
required:
|
||||||
|
- canary
|
||||||
|
- stable
|
||||||
|
type: object
|
||||||
type: object
|
type: object
|
||||||
collisionCount:
|
collisionCount:
|
||||||
format: int32
|
format: int32
|
||||||
|
@ -2831,6 +2933,8 @@ spec:
|
||||||
updatedReplicas:
|
updatedReplicas:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
workloadObservedGeneration:
|
||||||
|
type: string
|
||||||
type: object
|
type: object
|
||||||
required:
|
required:
|
||||||
- spec
|
- spec
|
||||||
|
|
Loading…
Reference in a new issue