-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add KeptnTask ref page; enhance guide chapter for keptn-no-k8s (#…
…2103) Signed-off-by: Meg McRoberts <[email protected]> Co-authored-by: RealAnna <[email protected]> Co-authored-by: odubajDT <[email protected]>
- Loading branch information
1 parent
66e86c0
commit 066be3e
Showing
2 changed files
with
208 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
--- | ||
title: KeptnTask | ||
description: Define a run of a KeptnTaskDefinition | ||
weight: 85 | ||
--- | ||
|
||
When using Keptn to run tasks for software | ||
that is deployed outside of Kubernetes, | ||
you must create the `KeptnTask` resource manually | ||
and modify it manually for each new run. | ||
Keptn automatically populates the `KeptnTask` resource | ||
for tasks that deploy software on Kubernetes. | ||
|
||
## Synopsis | ||
|
||
```yaml | ||
apiVersion: lifecycle.keptn.sh/v1alpha3 | ||
kind: KeptnTask | ||
metadata: | ||
name: <name-of-this-run> | ||
spec: | ||
taskDefinition: <name-of-KeptnTaskDefinition resource> | ||
context: | ||
appName: "<name-of-KeptnApp-resource>" | ||
appVersion: "1.0.0" | ||
objectType: "" | ||
taskType: "" | ||
workloadName: "my-workload" | ||
workloadVersion: "1.0.0" | ||
parameters: <parameters to pass to job> | ||
secureParameters: <secure parameters to pass to job> | ||
checkType: "" | ||
retries: <integer> | ||
timeout: <duration-in-seconds> | ||
``` | ||
## Fields | ||
* **apiVersion** -- API version being used. | ||
` | ||
* **kind** -- Resource type. | ||
Must be set to `KeptnTask` | ||
|
||
* **metadata** | ||
* **name** -- Unique name of this run of the task. | ||
This name must be modified each time you run this `KeptnTask`, | ||
so a common practice is to add a number to the end of the string | ||
so you can increment the number for each run. | ||
Names must comply with the | ||
[Kubernetes Object Names and IDs](https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#dns-subdomain-names) | ||
specification. | ||
* **spec** - Defines the speficication of this `KeptnTask` resource | ||
* **taskDefinition** - Name of the corresponding `KeptnTaskDefinition` resource. | ||
This `KeptnTaskDefinition` can be located in the same namespace | ||
or in the Keptn installation namespace. | ||
* **context** - Contextual information about the task execution | ||
* **appName** - Name of the | ||
[KeptnApp](../yaml-crd-ref/app.md) resource | ||
for which the `KeptnTask` is being executed. | ||
* **appVersion** - Version of the `KeptnApp` resource | ||
for which the `KeptnTask` is being executed. | ||
|
||
* **objectType** - Indicates whether this `KeptnTask` | ||
is being executed for a `KeptnApp` or a `KeptnWorkload` resource. | ||
When populating this resource manually | ||
to run a task for a non-Kubernetes deployment, | ||
set this value to `""`: | ||
Keptn populates this field based on annotations | ||
to the `KeptnWorkload` and `KeptnApp` resources. | ||
|
||
* **taskType** Indicates whether this `KeptnTask` | ||
is part of the pre- or post-deployment phase. | ||
When populating this resource manually | ||
to run a task for a non-Kubernetes deployment, | ||
set this value to `""`: | ||
Keptn populates this field based on annotations | ||
to the `KeptnWorkload` and `KeptnApp` resources. | ||
|
||
* **workloadName** - Name of the `KeptnWorkload` | ||
for which the `KeptnTask` is being executed. | ||
* **workloadVersion** - Version of the `KeptnWorkload` | ||
for which the `KeptnTask` is being executed. | ||
* **parameters** (optional) -- Parameters that are passed to the job | ||
that executes the `KeptnTask`. | ||
* **secureParameters** (optional) -- Secure parameters that are passed | ||
to the job that executes the `KeptnTask`. | ||
These are stored and accessed as Kubernetes `Secrets` in the cluster. | ||
See [Working with secrets](../implementing/tasks/#working-with-secrets) | ||
for more information. | ||
* **checkType** -- Defines whether task is part of pre- or post-deployment phase. | ||
Keptn populates this field based on annotations | ||
to the `KeptnWorkload` and `KeptnApp` resources. | ||
* **retries** (optional) -- If errors occur, | ||
this defines the number of attempts made | ||
before the `KeptnTask` is considered to be failed. | ||
* **timeout** (optional) -- Specifies the time, in seconds, | ||
to wait for the `KeptnTask` to complete successfully. | ||
If the `KeptnTask` does not complete successfully in this timeframe, | ||
it is considered to be failed. | ||
|
||
## Usage | ||
|
||
Applying this file causes Keptn to create a Job and a Pod | ||
and run the associated `KeptnTaskDefinition`. | ||
|
||
Use the following commands to show the current status of the jobs: | ||
|
||
```shell | ||
kubectl get keptntasks | ||
kubectl get pods | ||
``` | ||
|
||
Each time you want to rerun the `KeptnTask` resource, | ||
you must update the value of the `metadata.name` field. | ||
A common practice is to just increment the value incrementally, | ||
so `helloworldtask-1` becomes `helloworldtask-2`, etc. | ||
|
||
For a full example of how to create a `KeptnTask` resource | ||
to use for a deployment being done outside of Kubernetes, see | ||
[Keptn for Non-Kubernetes Applications](../implementing/tasks-non-k8s-apps.md). | ||
|
||
## Files | ||
|
||
[API reference](../crd-ref/lifecycle/v1alpha3/#keptntaskspec) | ||
|
||
## Differences between versions | ||
|
||
The syntax of the `KeptnTask` resource changed significantly | ||
in Keptn v0.8.0. | ||
|
||
## See also | ||
|
||
* [KeptnTaskDefinition](taskdefinition.md) | ||
* [Keptn for Non-Kubernetes Applications](../implementing/tasks-non-k8s-apps.md) |