diff --git a/charts/terraform-operator/Chart.yaml b/charts/terraform-operator/Chart.yaml index 7adef7b..ff7e9b8 100644 --- a/charts/terraform-operator/Chart.yaml +++ b/charts/terraform-operator/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: v0.14.0 +appVersion: v0.15.0 description: A Helm chart to deploy the terraform-operator Controller and CRD. name: terraform-operator -version: 0.5.0 +version: 0.6.0 diff --git a/charts/terraform-operator/README.md b/charts/terraform-operator/README.md index 8ee856c..a7be74f 100644 --- a/charts/terraform-operator/README.md +++ b/charts/terraform-operator/README.md @@ -1,6 +1,6 @@ # terraform-operator -![Version: 0.5.0](https://img.shields.io/badge/Version-0.5.0-informational?style=flat-square) ![AppVersion: v0.14.0](https://img.shields.io/badge/AppVersion-v0.14.0-informational?style=flat-square) +![Version: 0.6.0](https://img.shields.io/badge/Version-0.6.0-informational?style=flat-square) ![AppVersion: v0.15.0](https://img.shields.io/badge/AppVersion-v0.15.0-informational?style=flat-square) A Helm chart to deploy the terraform-operator Controller and CRD. @@ -26,7 +26,7 @@ kubectl apply -f crds/terraform.yaml | controller.enabled | `bool` deploy the terraform-operator controller | `true` | | controller.replicaCount | `int` number of replicas | `1` | | controller.image.repository | `string` image without the tag. | `"ghcr.io/galleybytes/terraform-operator"` | -| controller.image.tag | `string` tag of the image | `"v0.14.0"` | +| controller.image.tag | `string` tag of the image | `"v0.15.0"` | | controller.image.pullPolicy | `string` Set how kubernetes determines when to pull the docker image. | `"IfNotPresent"` | | controller.args | `list` additional arguments for the command | values.yaml | | controller.resources | `object` CPU/Memory request and limit configuration | values.yaml | diff --git a/charts/terraform-operator/crds/terraform.yaml b/charts/terraform-operator/crds/terraform.yaml index ab416fc..8d35e32 100644 --- a/charts/terraform-operator/crds/terraform.yaml +++ b/charts/terraform-operator/crds/terraform.yaml @@ -3,7 +3,8 @@ apiVersion: apiextensions.k8s.io/v1 kind: CustomResourceDefinition metadata: annotations: - controller-gen.kubebuilder.io/version: v0.12.0 + controller-gen.kubebuilder.io/version: v0.9.2 + creationTimestamp: null name: terraforms.tf.galleybytes.com spec: group: tf.galleybytes.com @@ -2563,6 +2564,17 @@ spec: it, the chance of recycling existing resources is reduced to virtually nil. type: string + retryEventReson: + description: "RetryEventReason copies the value of the resource label + for 'kubernetes.io/change-cause'. When '.setup' is is the suffix + of the value, the pipeline will retry from the setup task. \n Example + of starting from setup: \n ```yaml metadata: labels: kubernetes.io/change-cause: + triggered-by-isa_aguilar-20231025T011600.setup ``` \n A default + retry will start from the init task otherwise." + type: string + retryTimestamp: + format: date-time + type: string stage: description: Stage stores information about the current stage properties: diff --git a/charts/terraform-operator/values.yaml b/charts/terraform-operator/values.yaml index 82db634..83b0d9d 100644 --- a/charts/terraform-operator/values.yaml +++ b/charts/terraform-operator/values.yaml @@ -12,7 +12,7 @@ controller: # controller.image.repository -- image without the tag. repository: ghcr.io/galleybytes/terraform-operator # controller.image.tag -- tag of the image - tag: v0.14.0 + tag: v0.15.0 # controller.image.pullPolicy -- Set how kubernetes determines when # to pull the docker image. pullPolicy: IfNotPresent