Skip to content

Commit

Permalink
fix typoed crd
Browse files Browse the repository at this point in the history
  • Loading branch information
isaaguilar committed Oct 28, 2023
1 parent 1a5d46a commit 0e509b4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Build Terraform Operator Container Image

on: [push]
on:
pull_request:
branches:
- master
push:
tags:
- '*'

jobs:
Terraform-Operator-AMD_x86_64:
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/tf.galleybytes.com_terraforms_crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2564,7 +2564,7 @@ spec:
it, the chance of recycling existing resources is reduced to virtually
nil.
type: string
retryEventReson:
retryEventReason:
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
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/tf/v1beta1/terraform_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ type TerraformStatus struct {
// ```
//
// A default retry will start from the init task otherwise.
RetryEventReason *string `json:"retryEventReson,omitempty"`
RetryEventReason *string `json:"retryEventReason,omitempty"`
RetryTimestamp *metav1.Time `json:"retryTimestamp,omitempty"`
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/tf/v1beta1/zz_generated.openapi.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0e509b4

Please sign in to comment.