Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 2 additions & 12 deletions Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ includes:
flatten: true
excludes: # put task names in here which are overwritten in this file
- generate:code
- validate:test
vars:
NESTED_MODULES: api
API_DIRS: '{{.ROOT_DIR}}/api/core/v1alpha1/...'
Expand All @@ -24,6 +23,7 @@ includes:
COMPONENTS: 'mcp-operator'
REPO_URL: 'https://github.com/openmcp-project/mcp-operator'
GENERATE_DOCS_INDEX: "true"
ENVTEST_REQUIRED: "true"
common: # imported a second time so that overwriting task definitions can call the overwritten task with a 'c:' prefix
taskfile: hack/common/Taskfile_controller.yaml
internal: true
Expand All @@ -37,6 +37,7 @@ includes:
COMPONENTS: 'mcp-operator'
REPO_URL: 'https://github.com/openmcp-project/mcp-operator'
GENERATE_DOCS_INDEX: "true"
ENVTEST_REQUIRED: "true"

tasks:
generate:code: # overwrites shared code task to add external API fetching
Expand All @@ -58,14 +59,3 @@ tasks:
cmds:
- 'go run {{.ROOT_DIR}}/hack/external-apis/main.go'
internal: true

validate:test: # overwrites the test task to add a dependency towards envtest
desc: " Run all tests."
aliases:
- val:test
- v:test
run: once
deps:
- tools:envtest
cmds:
- task: c:validate:test
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.26.3-dev
v0.26.4
4 changes: 2 additions & 2 deletions charts/mcp-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: mcp-operator
description: A Helm chart for the mcp-operator
type: application
version: v0.26.3
appVersion: v0.26.3
version: v0.26.4
appVersion: v0.26.4
home: https://github.com/openmcp-project/mcp-operator
sources:
- https://github.com/openmcp-project/mcp-operator
2 changes: 1 addition & 1 deletion charts/mcp-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deployment:

image:
repository: ghcr.io/openmcp-project/github.com/openmcp-project/mcp-operator/images/mcp-operator
tag: v0.26.3
tag: v0.26.4
pullPolicy: IfNotPresent

imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ require (
github.com/onsi/gomega v1.36.2
github.com/openmcp-project/control-plane-operator v0.1.4
github.com/openmcp-project/controller-utils v0.4.2
github.com/openmcp-project/mcp-operator/api v0.26.3
github.com/openmcp-project/mcp-operator/api v0.26.4
github.com/spf13/cobra v1.9.1
github.com/spf13/pflag v1.0.6
github.com/stretchr/testify v1.10.0
Expand Down
2 changes: 1 addition & 1 deletion hack/common