You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -142,6 +147,37 @@ Replace `<operator-namespace>` and `<version>` with appropriate values.
142
147
143
148
After deployment, create your DataSink configuration as described in the [DataSink Configuration](#datasink-configuration) section.
144
149
150
+
## Getting Started
151
+
You’ll need a Kubernetes cluster to run against. You can use [KIND](https://sigs.k8s.io/kind) to get a local cluster for testing, or run against a remote cluster.
152
+
**Note:** Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster `kubectl cluster-info` shows).
153
+
154
+
### Running on the cluster
155
+
1. Install Instances of Custom Resources:
156
+
157
+
```sh
158
+
make dev-local-all
159
+
```
160
+
161
+
2. Run the controller:
162
+
163
+
```sh
164
+
make dev-run
165
+
```
166
+
Or run it from your IDE.
167
+
168
+
### Delete Kind Cluster
169
+
Delete Kind cluster
170
+
```sh
171
+
make dev-clean
172
+
```
173
+
174
+
### Modifying the API definitions
175
+
If you are editing the API definitions, generate the manifests such as CRs or CRDs using:
176
+
177
+
```sh
178
+
make manifests generate
179
+
```
180
+
145
181
## Usage
146
182
147
183
### Metric
@@ -437,37 +473,6 @@ To make the most of your metrics:
437
473
For specific instructions on using your data sink's features, refer to its documentation. For example, if using Dynatrace, consult the Dynatrace documentation for information on creating custom charts, setting up alerts, and performing advanced analytics on your metric data.
438
474
439
475
440
-
## Getting Started
441
-
You’ll need a Kubernetes cluster to run against. You can use [KIND](https://sigs.k8s.io/kind) to get a local cluster for testing, or run against a remote cluster.
442
-
**Note:** Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster `kubectl cluster-info` shows).
443
-
444
-
### Running on the cluster
445
-
1. Install Instances of Custom Resources:
446
-
447
-
```sh
448
-
make dev-local-all
449
-
```
450
-
451
-
2. Run the controller:
452
-
453
-
```sh
454
-
make dev-run
455
-
```
456
-
Or run it from your IDE.
457
-
458
-
### Delete Kind Cluster
459
-
Delete Kind cluster
460
-
```sh
461
-
make dev-clean
462
-
```
463
-
464
-
### Modifying the API definitions
465
-
If you are editing the API definitions, generate the manifests such as CRs or CRDs using:
466
-
467
-
```sh
468
-
make manifests generate
469
-
```
470
-
471
476
## Support, Feedback, Contributing
472
477
473
478
This project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/SAP/metrics-operator/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](CONTRIBUTING.md).
0 commit comments