Skip to content

Commit

Permalink
bump tfo version
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaguilar committed Aug 3, 2023
1 parent 70de5a4 commit f9b74ad
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/terraform-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: v1
appVersion: v0.12.1
appVersion: v0.13.0
description: A Helm chart to deploy the terraform-operator Controller and CRD.
name: terraform-operator
version: 0.4.4
version: 0.4.5
4 changes: 2 additions & 2 deletions charts/terraform-operator/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# terraform-operator

![Version: 0.4.3](https://img.shields.io/badge/Version-0.4.3-informational?style=flat-square) ![AppVersion: v0.12.1](https://img.shields.io/badge/AppVersion-v0.12.1-informational?style=flat-square)
![Version: 0.4.5](https://img.shields.io/badge/Version-0.4.5-informational?style=flat-square) ![AppVersion: v0.13.0](https://img.shields.io/badge/AppVersion-v0.13.0-informational?style=flat-square)

A Helm chart to deploy the terraform-operator Controller and CRD.

Expand All @@ -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.12.1"` |
| controller.image.tag | `string` tag of the image | `"v0.13.0"` |
| controller.image.pullPolicy | `string` Set how kubernetes determines when to pull the docker image. | `"IfNotPresent"` |
| controller.args | `list` additional arguments for the command | <a href="values.yaml#L22-L24">values.yaml</a> |
| controller.resources | `object` CPU/Memory request and limit configuration | <a href="values.yaml#L31-L37">values.yaml</a> |
Expand Down
15 changes: 15 additions & 0 deletions charts/terraform-operator/crds/terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,11 @@ spec:
key:
description: Key in the secret ref. Default to `token`
type: string
lockSecretDeletion:
description: Set finalizer from controller on the
secret to prevent delete flow breaking Works only
with spec.ignoreDelete = true
type: boolean
name:
description: Name the secret name that has the token
or password
Expand Down Expand Up @@ -314,6 +319,11 @@ spec:
key:
description: Key in the secret ref. Default to `id_rsa`
type: string
lockSecretDeletion:
description: Set finalizer from controller on the
secret to prevent delete flow breaking. Works
only with `spec.ignoreDelete = true`.
type: boolean
name:
description: Name the secret name that has the SSH
key
Expand Down Expand Up @@ -392,6 +402,11 @@ spec:
key:
description: Key in the secret ref. Default to `id_rsa`
type: string
lockSecretDeletion:
description: Set finalizer from controller on the secret to
prevent delete flow breaking. Works only with `spec.ignoreDelete
= true`.
type: boolean
name:
description: Name the secret name that has the SSH key
type: string
Expand Down
5 changes: 4 additions & 1 deletion charts/terraform-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.12.1
tag: v0.13.0
# controller.image.pullPolicy -- Set how kubernetes determines when
# to pull the docker image.
pullPolicy: IfNotPresent
Expand Down Expand Up @@ -55,6 +55,9 @@ controller:
# Accepts `tpl` values.
env: []

# -- EnvFrom defined like k8s EnvFrom https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#envfromsource-v1-core.
envFrom: []

# controller.nodeSelector -- node labels for pod assignment
nodeSelector: {}

Expand Down

0 comments on commit f9b74ad

Please sign in to comment.