From 07c1f87c61e0df5d5b73562550fb4d81837e3b1d Mon Sep 17 00:00:00 2001 From: Christopher Junk Date: Mon, 20 Jul 2026 14:17:13 +0200 Subject: [PATCH] docs(platform-service): replace service provider with platform service On-behalf-of: @SAP christopher.junk@sap.com Signed-off-by: Christopher Junk --- docs/developers/platformservice/02-develop.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/platformservice/02-develop.mdx b/docs/developers/platformservice/02-develop.mdx index 5920ff4..c0be03b 100644 --- a/docs/developers/platformservice/02-develop.mdx +++ b/docs/developers/platformservice/02-develop.mdx @@ -77,7 +77,7 @@ The platform service template is built with [kubebuilder](https://book.kubebuild - **cmd/** contains the entrypoint of the controller with init + run commands expected by the [openmcp-operator](https://github.com/openmcp-project/openmcp-operator) to deploy the Platform Service. - **internal/controller/** contains the `Reconcile` function where you implement your service specific reconcile logic. -If you are new to implementing Kubernetes controllers, consider completing [building a CronJob tutorial](https://book.kubebuilder.io/cronjob-tutorial/cronjob-tutorial.html) before returning to this guide. The rest of this guide highlights the most important steps to create a service provider and the differences compared to a regular Kubernetes controller. +If you are new to implementing Kubernetes controllers, consider completing [building a CronJob tutorial](https://book.kubebuilder.io/cronjob-tutorial/cronjob-tutorial.html) before returning to this guide. The rest of this guide highlights the most important steps to create a Platform Service and the differences compared to a regular Kubernetes controller. ## Edit the generated API type