Skip to content

Commit

Permalink
Document quick install for Eventing (kyma-project#18494)
Browse files Browse the repository at this point in the history
* Delete external CRD folder

* Document quick install for Eventing module
  • Loading branch information
muralov authored Dec 19, 2023
1 parent 65e07c4 commit 8d5af31
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ var _ = BeforeSuite(func(done Done) {
testEnv = &envtest.Environment{
CRDDirectoryPaths: []string{
filepath.Join("../../", "config", "crd", "bases"),
filepath.Join("../../", "config", "crd", "external"),
},
AttachControlPlaneOutput: attachControlPlaneOutput,
UseExistingCluster: &useExistingCluster,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,6 @@ func startTestEnv() (*rest.Config, error) {
emTestEnsemble.testEnv = &envtest.Environment{
CRDDirectoryPaths: []string{
filepath.Join("../../../../", "config", "crd", "bases"),
filepath.Join("../../../../", "config", "crd", "external"),
},
AttachControlPlaneOutput: attachControlPlaneOutput,
UseExistingCluster: &useExistingCluster,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ func startTestEnv() (*rest.Config, error) {
emTestEnsemble.testEnv = &envtest.Environment{
CRDDirectoryPaths: []string{
filepath.Join("../../../../", "config", "crd", "bases"),
filepath.Join("../../../../", "config", "crd", "external"),
},
AttachControlPlaneOutput: attachControlPlaneOutput,
UseExistingCluster: utils.BoolPtr(useExistingCluster),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ func startTestEnv() (*rest.Config, error) {
emTestEnsemble.testEnv = &envtest.Environment{
CRDDirectoryPaths: []string{
filepath.Join("../../../../", "config", "crd", "bases"),
filepath.Join("../../../../", "config", "crd", "external"),
},
AttachControlPlaneOutput: attachControlPlaneOutput,
UseExistingCluster: &useExistingCluster,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ func setupSuite() error {
TestEnv: &envtest.Environment{
CRDDirectoryPaths: []string{
filepath.Join("../../../", "config", "crd", "bases"),
filepath.Join("../../../", "config", "crd", "external"),
},
AttachControlPlaneOutput: attachControlPlaneOutput,
UseExistingCluster: &useExistingCluster,
Expand Down
7 changes: 7 additions & 0 deletions docs/02-get-started/01-quick-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ To get started with Kyma, let's quickly install it with specific modules first.
kubectl apply -f https://github.com/kyma-project/nats-manager/releases/latest/download/nats_default_cr.yaml -n kyma-system
```

[**Eventing**](https://github.com/kyma-project/eventing-manager)

```bash
kubectl apply -f https://github.com/kyma-project/eventing-manager/releases/latest/download/eventing-manager.yaml
kubectl apply -f https://github.com/kyma-project/eventing-manager/releases/latest/download/eventing_default_cr.yaml -n kyma-system
```

[**API Gateway**](https://github.com/kyma-project/api-gateway)

```bash
Expand Down

0 comments on commit 8d5af31

Please sign in to comment.