diff --git a/README.md b/README.md index 42fc97c9..01c0e165 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,16 @@ Install Typhoon to your cluster in a `typhoon` namespace. helm install typhoon typhoon/typhoon --create-namespace --namespace typhoon ``` +## Development + +You can use [minikube](https://minikube.sigs.k8s.io/docs/) to run a local Kubernetes cluster. + +```shell +minikube start +``` + +You need to install Serving and Eventing for Knative. + ## License [Apache 2.0](/LICENSE) \ No newline at end of file diff --git a/charts/typhoon/crds/typhoon-crds.yaml b/charts/typhoon/crds/typhoon-crds.yaml index 485426e8..96f431a5 100644 --- a/charts/typhoon/crds/typhoon-crds.yaml +++ b/charts/typhoon/crds/typhoon-crds.yaml @@ -563,7 +563,7 @@ metadata: annotations: registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.kafka.event" } + { "type": "com.zeiss.typhoon.kafka.event" } ] spec: group: sources.typhoon.zeiss.com @@ -1447,8 +1447,8 @@ metadata: registry.typhoon.zeiss.com/acceptedEventTypes: | [ { - "type": "io.typhoon.http.request", - "schema": "https://raw.githubusercontent.com/zeiss/typhoon/main/schemas/io.typhoon.http.request.json" + "type": "com.zeiss.typhoon.http.request", + "schema": "https://raw.githubusercontent.com/zeiss/typhoon/main/schemas/com.zeiss.typhoon.http.request.json" }, { "type": "*" } ] @@ -1710,7 +1710,7 @@ metadata: annotations: registry.typhoon.zeiss.com/acceptedEventTypes: | [ - { "type" : "io.typhoon.opentelemetry.metrics.push" } + { "type" : "com.zeiss.typhoon.opentelemetry.metrics.push" } ] spec: group: targets.typhoon.zeiss.com @@ -1954,7 +1954,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.logz.ship.response" } + { "type": "com.zeiss.typhoon.logz.ship.response" } ] spec: group: targets.typhoon.zeiss.com @@ -3414,7 +3414,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.jqtransformation.error" }, + { "type": "com.zeiss.typhoon.jqtransformation.error" }, { "type": "*" } ] spec: @@ -4134,7 +4134,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.xmltojsontransformation.error" }, + { "type": "com.zeiss.typhoon.xmltojsontransformation.error" }, { "type": "*" } ] spec: @@ -4348,7 +4348,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.xslttransformation.error" }, + { "type": "com.zeiss.typhoon.xslttransformation.error" }, { "type": "*" } ] spec: diff --git a/config/300-kafkasource.yaml b/config/300-kafkasource.yaml index 0459b363..dc1294d6 100644 --- a/config/300-kafkasource.yaml +++ b/config/300-kafkasource.yaml @@ -10,7 +10,7 @@ metadata: annotations: registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.kafka.event" } + { "type": "com.zeiss.typhoon.kafka.event" } ] spec: group: sources.typhoon.zeiss.com diff --git a/config/301-httptarget.yaml b/config/301-httptarget.yaml index 5ffb0dbb..e4989845 100644 --- a/config/301-httptarget.yaml +++ b/config/301-httptarget.yaml @@ -10,8 +10,8 @@ metadata: registry.typhoon.zeiss.com/acceptedEventTypes: | [ { - "type": "io.typhoon.http.request", - "schema": "https://raw.githubusercontent.com/zeiss/typhoon/main/schemas/io.typhoon.http.request.json" + "type": "com.zeiss.typhoon.http.request", + "schema": "https://raw.githubusercontent.com/zeiss/typhoon/main/schemas/com.zeiss.typhoon.http.request.json" }, { "type": "*" } ] diff --git a/config/301-logzmetricstarget.yaml b/config/301-logzmetricstarget.yaml index 37a3847b..c0fb631d 100644 --- a/config/301-logzmetricstarget.yaml +++ b/config/301-logzmetricstarget.yaml @@ -9,7 +9,7 @@ metadata: annotations: registry.typhoon.zeiss.com/acceptedEventTypes: | [ - { "type" : "io.typhoon.opentelemetry.metrics.push" } + { "type" : "com.zeiss.typhoon.opentelemetry.metrics.push" } ] spec: group: targets.typhoon.zeiss.com diff --git a/config/301-logztarget.yaml b/config/301-logztarget.yaml index 1f551ee0..a0639757 100644 --- a/config/301-logztarget.yaml +++ b/config/301-logztarget.yaml @@ -13,7 +13,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.logz.ship.response" } + { "type": "com.zeiss.typhoon.logz.ship.response" } ] spec: diff --git a/config/304-jqtransformation.yaml b/config/304-jqtransformation.yaml index 50f9a209..e37a4e1e 100644 --- a/config/304-jqtransformation.yaml +++ b/config/304-jqtransformation.yaml @@ -12,7 +12,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.jqtransformation.error" }, + { "type": "com.zeiss.typhoon.jqtransformation.error" }, { "type": "*" } ] spec: diff --git a/config/304-xmltojsontransformation.yaml b/config/304-xmltojsontransformation.yaml index 95736974..1f6efc8f 100644 --- a/config/304-xmltojsontransformation.yaml +++ b/config/304-xmltojsontransformation.yaml @@ -12,7 +12,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.xmltojsontransformation.error" }, + { "type": "com.zeiss.typhoon.xmltojsontransformation.error" }, { "type": "*" } ] spec: diff --git a/config/304-xslttransformation.yaml b/config/304-xslttransformation.yaml index f0474da4..2a9ec3f7 100644 --- a/config/304-xslttransformation.yaml +++ b/config/304-xslttransformation.yaml @@ -11,7 +11,7 @@ metadata: ] registry.knative.dev/eventTypes: | [ - { "type": "io.typhoon.xslttransformation.error" }, + { "type": "com.zeiss.typhoon.xslttransformation.error" }, { "type": "*" } ] spec: