feat(argo-rollouts): Bump app version to v0.10.2 (chart version: 0.3.11)
This commit is contained in:
parent
182ef88c67
commit
23d8b3a13d
8 changed files with 177 additions and 16 deletions
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: "0.9.1"
|
appVersion: "0.10.2"
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 0.3.10
|
version: 0.3.11
|
||||||
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
|
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
|
|
@ -2,7 +2,7 @@ Argo Rollouts Chart
|
||||||
=============
|
=============
|
||||||
A Helm chart for Argo Rollouts, progressive delivery for Kubernetes.
|
A Helm chart for Argo Rollouts, progressive delivery for Kubernetes.
|
||||||
|
|
||||||
Current chart version is `0.3.7`
|
Current chart version is `0.3.11`
|
||||||
|
|
||||||
Source code can be found [here](https://github.com/argoproj/argo-rollouts)
|
Source code can be found [here](https://github.com/argoproj/argo-rollouts)
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ $ helm install --name my-release argo/argo-rollouts
|
||||||
| controller.component | string | `"rollouts-controller"` | |
|
| controller.component | string | `"rollouts-controller"` | |
|
||||||
| controller.image.pullPolicy | string | `"IfNotPresent"` | |
|
| controller.image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| controller.image.repository | string | `"argoproj/argo-rollouts"` | |
|
| controller.image.repository | string | `"argoproj/argo-rollouts"` | |
|
||||||
| controller.image.tag | string | `"v0.8.0"` | |
|
| controller.image.tag | string | `"v0.10.2"` | |
|
||||||
| controller.name | string | `"argo-rollouts"` | |
|
| controller.name | string | `"argo-rollouts"` | |
|
||||||
| controller.resources | Resource limits and requests for the controller pods. | `{}` |
|
| controller.resources | Resource limits and requests for the controller pods. | `{}` |
|
||||||
| controller.tolerations | [Tolerations for use with node taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) | `[]` |
|
| controller.tolerations | [Tolerations for use with node taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/) | `[]` |
|
||||||
|
|
|
@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
controller-gen.kubebuilder.io/version: v0.2.5
|
controller-gen.kubebuilder.io/version: v0.4.0
|
||||||
name: analysisruns.argoproj.io
|
name: analysisruns.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
additionalPrinterColumns:
|
additionalPrinterColumns:
|
||||||
|
@ -41,6 +41,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
properties:
|
properties:
|
||||||
key:
|
key:
|
||||||
|
@ -81,6 +88,15 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
provider:
|
provider:
|
||||||
properties:
|
properties:
|
||||||
|
datadog:
|
||||||
|
properties:
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- query
|
||||||
|
type: object
|
||||||
job:
|
job:
|
||||||
properties:
|
properties:
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -2053,6 +2069,8 @@ spec:
|
||||||
fsGroup:
|
fsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
fsGroupChangePolicy:
|
||||||
|
type: string
|
||||||
runAsGroup:
|
runAsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
@ -2679,6 +2697,15 @@ spec:
|
||||||
- storageAccountName
|
- storageAccountName
|
||||||
- threshold
|
- threshold
|
||||||
type: object
|
type: object
|
||||||
|
newRelic:
|
||||||
|
properties:
|
||||||
|
profile:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- query
|
||||||
|
type: object
|
||||||
prometheus:
|
prometheus:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
|
|
@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
controller-gen.kubebuilder.io/version: v0.2.5
|
controller-gen.kubebuilder.io/version: v0.4.0
|
||||||
name: analysistemplates.argoproj.io
|
name: analysistemplates.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
|
@ -35,6 +35,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
properties:
|
properties:
|
||||||
key:
|
key:
|
||||||
|
@ -75,6 +82,15 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
provider:
|
provider:
|
||||||
properties:
|
properties:
|
||||||
|
datadog:
|
||||||
|
properties:
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- query
|
||||||
|
type: object
|
||||||
job:
|
job:
|
||||||
properties:
|
properties:
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -2047,6 +2063,8 @@ spec:
|
||||||
fsGroup:
|
fsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
fsGroupChangePolicy:
|
||||||
|
type: string
|
||||||
runAsGroup:
|
runAsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
@ -2673,6 +2691,15 @@ spec:
|
||||||
- storageAccountName
|
- storageAccountName
|
||||||
- threshold
|
- threshold
|
||||||
type: object
|
type: object
|
||||||
|
newRelic:
|
||||||
|
properties:
|
||||||
|
profile:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- query
|
||||||
|
type: object
|
||||||
prometheus:
|
prometheus:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
|
|
@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
controller-gen.kubebuilder.io/version: v0.2.5
|
controller-gen.kubebuilder.io/version: v0.4.0
|
||||||
name: clusteranalysistemplates.argoproj.io
|
name: clusteranalysistemplates.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
|
@ -35,6 +35,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
properties:
|
properties:
|
||||||
key:
|
key:
|
||||||
|
@ -75,6 +82,15 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
provider:
|
provider:
|
||||||
properties:
|
properties:
|
||||||
|
datadog:
|
||||||
|
properties:
|
||||||
|
interval:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- query
|
||||||
|
type: object
|
||||||
job:
|
job:
|
||||||
properties:
|
properties:
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -2047,6 +2063,8 @@ spec:
|
||||||
fsGroup:
|
fsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
fsGroupChangePolicy:
|
||||||
|
type: string
|
||||||
runAsGroup:
|
runAsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
@ -2673,6 +2691,15 @@ spec:
|
||||||
- storageAccountName
|
- storageAccountName
|
||||||
- threshold
|
- threshold
|
||||||
type: object
|
type: object
|
||||||
|
newRelic:
|
||||||
|
properties:
|
||||||
|
profile:
|
||||||
|
type: string
|
||||||
|
query:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- query
|
||||||
|
type: object
|
||||||
prometheus:
|
prometheus:
|
||||||
properties:
|
properties:
|
||||||
address:
|
address:
|
||||||
|
|
|
@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
controller-gen.kubebuilder.io/version: v0.2.5
|
controller-gen.kubebuilder.io/version: v0.4.0
|
||||||
name: experiments.argoproj.io
|
name: experiments.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
additionalPrinterColumns:
|
additionalPrinterColumns:
|
||||||
|
@ -44,6 +44,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
properties:
|
properties:
|
||||||
key:
|
key:
|
||||||
|
@ -2031,6 +2038,8 @@ spec:
|
||||||
fsGroup:
|
fsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
fsGroupChangePolicy:
|
||||||
|
type: string
|
||||||
runAsGroup:
|
runAsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
|
|
@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1beta1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
controller-gen.kubebuilder.io/version: v0.2.5
|
controller-gen.kubebuilder.io/version: v0.4.0
|
||||||
name: rollouts.argoproj.io
|
name: rollouts.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
additionalPrinterColumns:
|
additionalPrinterColumns:
|
||||||
|
@ -16,13 +16,11 @@ spec:
|
||||||
name: Current
|
name: Current
|
||||||
type: integer
|
type: integer
|
||||||
- JSONPath: .status.updatedReplicas
|
- JSONPath: .status.updatedReplicas
|
||||||
description: Total number of non-terminated pods targeted by this rollout that
|
description: Total number of non-terminated pods targeted by this rollout that have the desired template spec
|
||||||
have the desired template spec
|
|
||||||
name: Up-to-date
|
name: Up-to-date
|
||||||
type: integer
|
type: integer
|
||||||
- JSONPath: .status.availableReplicas
|
- JSONPath: .status.availableReplicas
|
||||||
description: Total number of available pods (ready for at least minReadySeconds)
|
description: Total number of available pods (ready for at least minReadySeconds) targeted by this rollout
|
||||||
targeted by this rollout
|
|
||||||
name: Available
|
name: Available
|
||||||
type: integer
|
type: integer
|
||||||
group: argoproj.io
|
group: argoproj.io
|
||||||
|
@ -39,6 +37,7 @@ spec:
|
||||||
labelSelectorPath: .status.selector
|
labelSelectorPath: .status.selector
|
||||||
specReplicasPath: .spec.replicas
|
specReplicasPath: .spec.replicas
|
||||||
statusReplicasPath: .status.HPAReplicas
|
statusReplicasPath: .status.HPAReplicas
|
||||||
|
status: {}
|
||||||
validation:
|
validation:
|
||||||
openAPIV3Schema:
|
openAPIV3Schema:
|
||||||
properties:
|
properties:
|
||||||
|
@ -125,6 +124,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
podTemplateHashValue:
|
podTemplateHashValue:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
@ -157,6 +163,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
podTemplateHashValue:
|
podTemplateHashValue:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
@ -205,6 +218,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
podTemplateHashValue:
|
podTemplateHashValue:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
@ -242,6 +262,17 @@ spec:
|
||||||
requiredDuringSchedulingIgnoredDuringExecution:
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
|
canaryMetadata:
|
||||||
|
properties:
|
||||||
|
annotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
canaryService:
|
canaryService:
|
||||||
type: string
|
type: string
|
||||||
maxSurge:
|
maxSurge:
|
||||||
|
@ -254,6 +285,17 @@ spec:
|
||||||
- type: integer
|
- type: integer
|
||||||
- type: string
|
- type: string
|
||||||
x-kubernetes-int-or-string: true
|
x-kubernetes-int-or-string: true
|
||||||
|
stableMetadata:
|
||||||
|
properties:
|
||||||
|
annotations:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
labels:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
type: object
|
||||||
stableService:
|
stableService:
|
||||||
type: string
|
type: string
|
||||||
steps:
|
steps:
|
||||||
|
@ -270,6 +312,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
podTemplateHashValue:
|
podTemplateHashValue:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
@ -305,6 +354,13 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
valueFrom:
|
valueFrom:
|
||||||
properties:
|
properties:
|
||||||
|
fieldRef:
|
||||||
|
properties:
|
||||||
|
fieldPath:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- fieldPath
|
||||||
|
type: object
|
||||||
podTemplateHashValue:
|
podTemplateHashValue:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
@ -316,6 +372,8 @@ spec:
|
||||||
type: boolean
|
type: boolean
|
||||||
name:
|
name:
|
||||||
type: string
|
type: string
|
||||||
|
requiredForCompletion:
|
||||||
|
type: boolean
|
||||||
templateName:
|
templateName:
|
||||||
type: string
|
type: string
|
||||||
required:
|
required:
|
||||||
|
@ -385,6 +443,17 @@ spec:
|
||||||
- type: string
|
- type: string
|
||||||
x-kubernetes-int-or-string: true
|
x-kubernetes-int-or-string: true
|
||||||
type: object
|
type: object
|
||||||
|
setCanaryScale:
|
||||||
|
properties:
|
||||||
|
matchTrafficWeight:
|
||||||
|
type: boolean
|
||||||
|
replicas:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
weight:
|
||||||
|
format: int32
|
||||||
|
type: integer
|
||||||
|
type: object
|
||||||
setWeight:
|
setWeight:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
@ -2367,6 +2436,8 @@ spec:
|
||||||
fsGroup:
|
fsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
fsGroupChangePolicy:
|
||||||
|
type: string
|
||||||
runAsGroup:
|
runAsGroup:
|
||||||
format: int64
|
format: int64
|
||||||
type: integer
|
type: integer
|
||||||
|
@ -2992,8 +3063,6 @@ spec:
|
||||||
- name
|
- name
|
||||||
- status
|
- status
|
||||||
type: object
|
type: object
|
||||||
stableRS:
|
|
||||||
type: string
|
|
||||||
type: object
|
type: object
|
||||||
collisionCount:
|
collisionCount:
|
||||||
format: int32
|
format: int32
|
||||||
|
@ -3048,6 +3117,8 @@ spec:
|
||||||
- startTime
|
- startTime
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
|
promoteFull:
|
||||||
|
type: boolean
|
||||||
readyReplicas:
|
readyReplicas:
|
||||||
format: int32
|
format: int32
|
||||||
type: integer
|
type: integer
|
||||||
|
|
|
@ -13,7 +13,7 @@ controller:
|
||||||
affinity: {}
|
affinity: {}
|
||||||
image:
|
image:
|
||||||
repository: argoproj/argo-rollouts
|
repository: argoproj/argo-rollouts
|
||||||
tag: v0.9.1
|
tag: v0.10.2
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
resources: {}
|
resources: {}
|
||||||
|
|
Loading…
Reference in a new issue