Skip to content

Commit

Permalink
chore: re-generate CRD manifests (keptn#2830)
Browse files Browse the repository at this point in the history
Signed-off-by: odubajDT <[email protected]>
  • Loading branch information
odubajDT authored Jan 18, 2024
1 parent a1183cf commit c0b1942
Show file tree
Hide file tree
Showing 45 changed files with 13,160 additions and 11,006 deletions.
4,756 changes: 2,588 additions & 2,168 deletions .github/scripts/.helm-tests/default/result.yaml

Large diffs are not rendered by default.

3,857 changes: 2,103 additions & 1,754 deletions .github/scripts/.helm-tests/lifecycle-only/result.yaml

Large diffs are not rendered by default.

3,857 changes: 2,103 additions & 1,754 deletions .github/scripts/.helm-tests/lifecycle-with-certs/result.yaml

Large diffs are not rendered by default.

Large diffs are not rendered by default.

899 changes: 485 additions & 414 deletions .github/scripts/.helm-tests/metrics-only/result.yaml

Large diffs are not rendered by default.

899 changes: 485 additions & 414 deletions .github/scripts/.helm-tests/metrics-with-certs/result.yaml

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/docs/reference/api-reference/lifecycle/v1alpha3/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -568,10 +568,10 @@ _Appears in:_

| Field | Description | Default | Optional |
| --- | --- | --- | --- |
| `function` _[RuntimeSpec](#runtimespec)_ | Deprecated Function contains the definition for the function that is to be executed in KeptnTasks based on the KeptnTaskDefinitions. |||
| `python` _[RuntimeSpec](#runtimespec)_ | Python contains the definition for the python function that is to be executed in KeptnTasks based on the KeptnTaskDefinitions. |||
| `deno` _[RuntimeSpec](#runtimespec)_ | Deno contains the definition for the Deno function that is to be executed in KeptnTasks based on the KeptnTaskDefinitions. |||
| `container` _[ContainerSpec](#containerspec)_ | Container contains the definition for the container that is to be used in Job based on the KeptnTaskDefinitions. |||
| `function` _[RuntimeSpec](#runtimespec)_ | Deprecated Function contains the definition for the function that is to be executed in KeptnTasks. |||
| `python` _[RuntimeSpec](#runtimespec)_ | Python contains the definition for the python function that is to be executed in KeptnTasks. |||
| `deno` _[RuntimeSpec](#runtimespec)_ | Deno contains the definition for the Deno function that is to be executed in KeptnTasks. |||
| `container` _[ContainerSpec](#containerspec)_ | Container contains the definition for the container that is to be used in Job. |||
| `retries` _integer_ | Retries specifies how many times a job executing the KeptnTaskDefinition should be restarted in the case of an unsuccessful attempt. |10||
| `timeout` _[Duration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#duration-v1-meta)_ | Timeout specifies the maximum time to wait for the task to be completed successfully. If the task does not complete successfully within this time frame, it will be considered to be failed. |5m||
| `serviceAccount` _[ServiceAccountSpec](#serviceaccountspec)_ | ServiceAccount specifies the service account to be used in jobs to authenticate with the Kubernetes API and access cluster resources. |||
Expand Down
8 changes: 4 additions & 4 deletions docs/docs/reference/api-reference/lifecycle/v1beta1/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -649,10 +649,10 @@ _Appears in:_

| Field | Description | Default | Optional |
| --- | --- | --- | --- |
| `function` _[RuntimeSpec](#runtimespec)_ | Deprecated Function contains the definition for the function that is to be executed in KeptnTasks based on the KeptnTaskDefinitions. |||
| `python` _[RuntimeSpec](#runtimespec)_ | Python contains the definition for the python function that is to be executed in KeptnTasks based on the KeptnTaskDefinitions. |||
| `deno` _[RuntimeSpec](#runtimespec)_ | Deno contains the definition for the Deno function that is to be executed in KeptnTasks based on the KeptnTaskDefinitions. |||
| `container` _[ContainerSpec](#containerspec)_ | Container contains the definition for the container that is to be used in Job based on the KeptnTaskDefinitions. |||
| `function` _[RuntimeSpec](#runtimespec)_ | Deprecated Function contains the definition for the function that is to be executed in KeptnTasks. |||
| `python` _[RuntimeSpec](#runtimespec)_ | Python contains the definition for the python function that is to be executed in KeptnTasks. |||
| `deno` _[RuntimeSpec](#runtimespec)_ | Deno contains the definition for the Deno function that is to be executed in KeptnTasks. |||
| `container` _[ContainerSpec](#containerspec)_ | Container contains the definition for the container that is to be used in Job. |||
| `retries` _integer_ | Retries specifies how many times a job executing the KeptnTaskDefinition should be restarted in the case of an unsuccessful attempt. |10||
| `timeout` _[Duration](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.28/#duration-v1-meta)_ | Timeout specifies the maximum time to wait for the task to be completed successfully. If the task does not complete successfully within this time frame, it will be considered to be failed. |5m||
| `serviceAccount` _[ServiceAccountSpec](#serviceaccountspec)_ | ServiceAccount specifies the service account to be used in jobs to authenticate with the Kubernetes API and access cluster resources. |||
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,16 @@ import (
// KeptnTaskDefinitionSpec defines the desired state of KeptnTaskDefinition
type KeptnTaskDefinitionSpec struct {
// Deprecated
// Function contains the definition for the function that is to be executed in KeptnTasks based on
// the KeptnTaskDefinitions.
// Function contains the definition for the function that is to be executed in KeptnTasks.
// +optional
Function *RuntimeSpec `json:"function,omitempty"`
// Python contains the definition for the python function that is to be executed in KeptnTasks based on
// the KeptnTaskDefinitions.
// Python contains the definition for the python function that is to be executed in KeptnTasks.
// +optional
Python *RuntimeSpec `json:"python,omitempty"`
// Deno contains the definition for the Deno function that is to be executed in KeptnTasks based on
// the KeptnTaskDefinitions.
// Deno contains the definition for the Deno function that is to be executed in KeptnTasks.
// +optional
Deno *RuntimeSpec `json:"deno,omitempty"`
// Container contains the definition for the container that is to be used in Job based on
// the KeptnTaskDefinitions.
// Container contains the definition for the container that is to be used in Job.
// +optional
Container *ContainerSpec `json:"container,omitempty"`
// Retries specifies how many times a job executing the KeptnTaskDefinition should be restarted in the case
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,16 @@ import (
// KeptnTaskDefinitionSpec defines the desired state of KeptnTaskDefinition
type KeptnTaskDefinitionSpec struct {
// Deprecated
// Function contains the definition for the function that is to be executed in KeptnTasks based on
// the KeptnTaskDefinitions.
// Function contains the definition for the function that is to be executed in KeptnTasks.
// +optional
Function *RuntimeSpec `json:"function,omitempty"`
// Python contains the definition for the python function that is to be executed in KeptnTasks based on
// the KeptnTaskDefinitions.
// Python contains the definition for the python function that is to be executed in KeptnTasks.
// +optional
Python *RuntimeSpec `json:"python,omitempty"`
// Deno contains the definition for the Deno function that is to be executed in KeptnTasks based on
// the KeptnTaskDefinitions.
// Deno contains the definition for the Deno function that is to be executed in KeptnTasks.
// +optional
Deno *RuntimeSpec `json:"deno,omitempty"`
// Container contains the definition for the container that is to be used in Job based on
// the KeptnTaskDefinitions.
// Container contains the definition for the container that is to be used in Job.
// +optional
Container *ContainerSpec `json:"container,omitempty"`
// Retries specifies how many times a job executing the KeptnTaskDefinition should be restarted in the case
Expand Down
Loading

0 comments on commit c0b1942

Please sign in to comment.