Skip to content

Commit

Permalink
wip: update namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
katallaxie authored Mar 5, 2024
1 parent 59238ca commit 76aae6d
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 16 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
16 changes: 8 additions & 8 deletions charts/typhoon/crds/typhoon-crds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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": "*" }
]
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -3414,7 +3414,7 @@ metadata:
]
registry.knative.dev/eventTypes: |
[
{ "type": "io.typhoon.jqtransformation.error" },
{ "type": "com.zeiss.typhoon.jqtransformation.error" },
{ "type": "*" }
]
spec:
Expand Down Expand Up @@ -4134,7 +4134,7 @@ metadata:
]
registry.knative.dev/eventTypes: |
[
{ "type": "io.typhoon.xmltojsontransformation.error" },
{ "type": "com.zeiss.typhoon.xmltojsontransformation.error" },
{ "type": "*" }
]
spec:
Expand Down Expand Up @@ -4348,7 +4348,7 @@ metadata:
]
registry.knative.dev/eventTypes: |
[
{ "type": "io.typhoon.xslttransformation.error" },
{ "type": "com.zeiss.typhoon.xslttransformation.error" },
{ "type": "*" }
]
spec:
Expand Down
2 changes: 1 addition & 1 deletion config/300-kafkasource.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions config/301-httptarget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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": "*" }
]
Expand Down
2 changes: 1 addition & 1 deletion config/301-logzmetricstarget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config/301-logztarget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ metadata:
]
registry.knative.dev/eventTypes: |
[
{ "type": "io.typhoon.logz.ship.response" }
{ "type": "com.zeiss.typhoon.logz.ship.response" }
]
spec:
Expand Down
2 changes: 1 addition & 1 deletion config/304-jqtransformation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
]
registry.knative.dev/eventTypes: |
[
{ "type": "io.typhoon.jqtransformation.error" },
{ "type": "com.zeiss.typhoon.jqtransformation.error" },
{ "type": "*" }
]
spec:
Expand Down
2 changes: 1 addition & 1 deletion config/304-xmltojsontransformation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
]
registry.knative.dev/eventTypes: |
[
{ "type": "io.typhoon.xmltojsontransformation.error" },
{ "type": "com.zeiss.typhoon.xmltojsontransformation.error" },
{ "type": "*" }
]
spec:
Expand Down
2 changes: 1 addition & 1 deletion config/304-xslttransformation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
]
registry.knative.dev/eventTypes: |
[
{ "type": "io.typhoon.xslttransformation.error" },
{ "type": "com.zeiss.typhoon.xslttransformation.error" },
{ "type": "*" }
]
spec:
Expand Down

0 comments on commit 76aae6d

Please sign in to comment.