We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dc2f2a commit c13b38fCopy full SHA for c13b38f
Taskfile.yaml
@@ -16,3 +16,25 @@ includes:
16
CHART_COMPONENTS: "[]"
17
CRDS_COMPONENTS: platform-service-dns
18
CRDS_PATH: '{{.ROOT_DIR}}/api/crds/manifests'
19
+
20
+tasks:
21
+ platformservice:
22
+ desc: " Generates a PlatformService manifest for the current version. Set the VERBOSITY env var to overwrite the default verbosity level (INFO)."
23
+ requires:
24
+ vars:
25
+ - VERSION
26
27
+ VERBOSITY:
28
+ sh: echo "${VERBOSITY:-INFO}"
29
+ cmds:
30
+ - cmd: |
31
+ cat << EOF
32
+ apiVersion: openmcp.cloud/v1alpha1
33
+ kind: PlatformService
34
+ metadata:
35
+ name: dns
36
+ spec:
37
+ image: ghcr.io/openmcp-project/images/platform-service-dns:{{.VERSION}}
38
+ verbosity: {{.VERBOSITY}}
39
+ EOF
40
+ silent: true
0 commit comments