Skip to content

Commit

Permalink
chore: release klt/klt 0.2.4 (#100)
Browse files Browse the repository at this point in the history
Co-authored-by: mowies <[email protected]>
Co-authored-by: Moritz Wiesinger <[email protected]>
  • Loading branch information
3 people authored Jun 21, 2023
1 parent 0ca802b commit 183ddf6
Show file tree
Hide file tree
Showing 19 changed files with 1,858 additions and 126 deletions.
4 changes: 2 additions & 2 deletions charts/keptn-lifecycle-toolkit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.3
version: 0.2.4

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.7.1" # x-release-please-version
appVersion: "v0.8.0" # x-release-please-version
145 changes: 73 additions & 72 deletions charts/keptn-lifecycle-toolkit/README.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion charts/keptn-lifecycle-toolkit/doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@
## @param lifecycleOperator.manager.env.optionsControllerLogLevel sets the log level of Keptn Options Controller

## @param lifecycleOperator.manager.env.otelCollectorUrl Sets the URL for the open telemetry collector
## @param lifecycleOperator.manager.env.functionRunnerImage specify image for task runtime <!---x-release-please-version-->
## @param lifecycleOperator.manager.env.functionRunnerImage specify image for deno task runtime <!---x-release-please-version-->
## @param lifecycleOperator.manager.env.pythonRunnerImage specify image for python task runtime <!---x-release-please-version-->

## @param lifecycleOperator.manager.image.repository specify registry for manager image
## @param lifecycleOperator.manager.image.tag select tag for manager image <!---x-release-please-version-->
Expand Down
4 changes: 2 additions & 2 deletions charts/keptn-lifecycle-toolkit/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ spec:
containers:
- args:
- webhook-server
- --certs-dir=/tmp/k8s-webhook-server/serving-certs/
- --leader-elect
- --adapter-port=6443
- --adapter-certs-dir=/tmp/metrics-adapter/serving-certs
Expand All @@ -177,6 +176,8 @@ spec:
fieldPath: metadata.name
- name: FUNCTION_RUNNER_IMAGE
value: {{ .Values.lifecycleOperator.manager.env.functionRunnerImage | quote }}
- name: PYTHON_RUNNER_IMAGE
value: {{ .Values.lifecycleOperator.manager.env.pythonRunnerImage | quote }}
- name: OTEL_COLLECTOR_URL
value: {{ .Values.lifecycleOperator.manager.env.otelCollectorUrl | quote }}
- name: KEPTN_APP_CONTROLLER_LOG_LEVEL
Expand Down Expand Up @@ -308,7 +309,6 @@ spec:
containers:
- args:
- webhook-server
- --certs-dir=/tmp/k8s-webhook-server/serving-certs/
- --leader-elect
- --adapter-port=6443
- --adapter-certs-dir=/tmp/metrics-adapter/serving-certs
Expand Down
36 changes: 33 additions & 3 deletions charts/keptn-lifecycle-toolkit/templates/keptnapp-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: CustomResourceDefinition
metadata:
name: keptnapps.lifecycle.keptn.sh
annotations:
controller-gen.kubebuilder.io/version: v0.11.4
controller-gen.kubebuilder.io/version: v0.12.0
labels:
app.kubernetes.io/part-of: keptn-lifecycle-toolkit
crdGroup: lifecycle.keptn.sh
Expand Down Expand Up @@ -177,35 +177,63 @@ spec:
metadata:
type: object
spec:
description: KeptnAppSpec defines the desired state of KeptnApp
description: Spec describes the desired state of the KeptnApp.
properties:
postDeploymentEvaluations:
description: PostDeploymentEvaluations is a list of all evaluations
to be performed during the post-deployment phase of the KeptnApp.
The items of this list refer to the names of KeptnEvaluationDefinitions
located in the same namespace as the KeptnApp, or in the KLT namespace.
items:
type: string
type: array
postDeploymentTasks:
description: PostDeploymentTasks is a list of all tasks to be performed
during the post-deployment phase of the KeptnApp. The items of this
list refer to the names of KeptnTaskDefinitions located in the same
namespace as the KeptnApp, or in the KLT namespace.
items:
type: string
type: array
preDeploymentEvaluations:
description: PreDeploymentEvaluations is a list of all evaluations to
be performed during the pre-deployment phase of the KeptnApp. The
items of this list refer to the names of KeptnEvaluationDefinitions
located in the same namespace as the KeptnApp, or in the KLT namespace.
items:
type: string
type: array
preDeploymentTasks:
description: PreDeploymentTasks is a list of all tasks to be performed
during the pre-deployment phase of the KeptnApp. The items of this
list refer to the names of KeptnTaskDefinitions located in the same
namespace as the KeptnApp, or in the KLT namespace.
items:
type: string
type: array
revision:
default: 1
description: Revision can be modified to trigger another deployment
of a KeptnApp of the same version. This can be used for restarting
a KeptnApp which failed to deploy, e.g. due to a failed preDeploymentEvaluation/preDeploymentTask.
type: integer
version:
description: Version defines the version of the application. For automatically
created KeptnApps, the version is a function of all KeptnWorkloads
that are part of the KeptnApp.
type: string
workloads:
description: Workloads is a list of all KeptnWorkloads that are part
of the KeptnApp.
items:
description: KeptnWorkloadRef refers to a KeptnWorkload that is part
of a KeptnApp
properties:
name:
description: Name is the name of the KeptnWorkload.
type: string
version:
description: Version is the version of the KeptnWorkload.
type: string
required:
- name
Expand All @@ -216,9 +244,11 @@ spec:
- version
type: object
status:
description: KeptnAppStatus defines the observed state of KeptnApp
description: Status describes the current state of the KeptnApp.
properties:
currentVersion:
description: CurrentVersion indicates the version that is currently
deployed or being reconciled.
type: string
type: object
type: object
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: CustomResourceDefinition
metadata:
name: keptnappcreationrequests.lifecycle.keptn.sh
annotations:
controller-gen.kubebuilder.io/version: v0.11.4
controller-gen.kubebuilder.io/version: v0.12.0
labels:
app.kubernetes.io/part-of: keptn-lifecycle-toolkit
crdGroup: lifecycle.keptn.sh
Expand Down Expand Up @@ -37,7 +37,7 @@ spec:
metadata:
type: object
spec:
description: KeptnAppCreationRequestSpec defines the desired state of KeptnAppCreationRequest
description: Spec describes the desired state of the KeptnAppCreationRequest.
properties:
appName:
description: AppName is the name of the KeptnApp the KeptnAppCreationRequest
Expand All @@ -47,8 +47,7 @@ spec:
- appName
type: object
status:
description: KeptnAppCreationRequestStatus defines the observed state of
KeptnAppCreationRequest
description: Status describes the current state of the KeptnAppCreationRequest.
type: object
type: object
served: true
Expand Down
Loading

0 comments on commit 183ddf6

Please sign in to comment.