Skip to content

Commit 6f0d130

Browse files
committed
[Docu] Service Workloads: Documentation added
Add initial documentation for Service only workloads.
1 parent ad238f3 commit 6f0d130

9 files changed

+206
-9
lines changed

website/content/en/docs/usage/operator-metrics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Operator Metrics"
33
linkTitle: "Operator Metrics"
4-
weight: 60
4+
weight: 70
55
type: "docs"
66
description: >
77
How to monitor and consume metrics emitted by CAP Operator

website/content/en/docs/usage/resources/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Resources"
33
linkTitle: "Resources"
4-
weight: 70
4+
weight: 80
55
type: "docs"
66
description: >
77
Detailed configuration of resources managed by CAP Operator

website/content/en/docs/usage/resources/capapplication.md

+2
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,5 @@ The `domains` section provides details of where the application routes are expos
6666
> NOTE: While the same secondary domain can technically be used across applications; the consumers need to ensure that the tenant sub-domains are unique across such applications that share the same domain!
6767

6868
`istioIngressGatewayLabels` are key-value pairs (string) used to identify the ingress controller component of Istio and the related load balancer service. These values are configured during the installation of Istio service mesh in the cluster.
69+
70+
> NOTE: The `provider` section is omitted for [Services Only Applications](../services-workload.md)

website/content/en/docs/usage/resources/capapplicationversion.md

+59-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ consumedBTPServices: # <-- an array of service instance names referencing the SA
5050
- cap-uaa
5151
- cap-saas-reg
5252
deploymentDefinition:
53-
type: CAP # <-- possible values are CAP / Router / Additional
53+
type: CAP # <-- possible values are CAP / Router / Additional / Service
5454
image: some.repo.example.com/cap-app/server:3.22.11 # <-- container image
5555
env: # <-- (optional) same as in core v1 pod.spec.containers.env
5656
- name: SAY
@@ -189,6 +189,64 @@ spec:
189189
- content-deployer-ui
190190
```
191191
192+
### Services / Tenant independent workloads
193+
194+
```yaml
195+
spec:
196+
workloads:
197+
- name: cap-backend-service
198+
consumedBTPServices: # <-- an array of service instance names referencing the SAP BTP services defined in the CAPApplication resource
199+
- cap-uaa
200+
- cap-saas-reg
201+
deploymentDefinition:
202+
type: Service # <-- possible values are CAP / Router / Additional / Service
203+
image: some.repo.example.com/cap-app/server:3.22.11 # <-- container image
204+
env: # <-- (optional) same as in core v1 pod.spec.containers.env
205+
- name: SAY
206+
value: "I'm GROOT"
207+
replicas: 3 # <-- (optional) replicas for scaling
208+
ports: # Some configs like routerDestinationName are not relevant for ServicesOnly scenario
209+
- name: app-port
210+
port: 4004
211+
- name: tech-port
212+
port: 4005
213+
- name: api
214+
port: 8000
215+
appProtocol: http
216+
- name: service-content
217+
consumedBTPServices:
218+
- app-uaa
219+
- app-html5-repo-host
220+
- app-portal
221+
jobDefinition:
222+
type: Content
223+
image: app.some.repo.example.com/approuter/content:0.0.1
224+
backoffLimit: 1
225+
serviceExposures:
226+
- subDomain: service
227+
routes:
228+
- workloadName: cap-backend-service
229+
port: 4004
230+
- subDomain: api
231+
routes:
232+
- workloadName: cap-backend-service
233+
port: 8000
234+
path: /api
235+
```
236+
237+
Here too the `type` of the deployment is important to indicate how the operator handles this workload. For Services Only scenario only `Service` type is valid. You can also have jobs of type `Content` to deploy application content related to UI, DB as needed.
238+
239+
_Other attributes can be configured as documented._
240+
241+
#### Port configuration
242+
243+
It's possible to define which (and how many) ports exposed by a deployment container are exposed inside the cluster (via services of type `ClusterIP`). The port definition includes a `name` in addition to the `port` number being exposed.
244+
245+
For service only workloads the `routerDestinationName` is not relevant.
246+
247+
The port configurations are mandatory and cannot be omitted.
248+
249+
192250
### Full Example
193251

194252
```yaml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
---
2+
title: "Services Only Applications"
3+
linkTitle: "Services Only Applications"
4+
weight: 50
5+
type: "docs"
6+
tags: ["services Only", "tenant independent"]
7+
description: >
8+
Deploying CAP applications with only service workloads (tenant-independent).
9+
---
10+
11+
This guide explains how to deploy a CAP application containing only service workloads (those that are tenant-independent).
12+
13+
## Deploying Services Only Applications
14+
15+
Services only applications don't require tenant-specific configurations. Therefore, the `provider` section is omitted from the `CAPApplication` resource, and the `CAPApplicationVersion` should only define deployments of type `Service`, alongside optional `Content` jobs.
16+
17+
Because these applications are tenant-independent, no tenant related resources are created.
18+
19+
The service workloads may be exposed externally via `serviceExposures` configuration on the [version](#version-configuration-capapplicationversion).
20+
21+
### Application Configuration (`CAPApplication`)
22+
23+
Create a `CAPApplication` resource without a `provider` section, as shown below:
24+
25+
```yaml
26+
apiVersion: sme.sap.com/v1alpha1
27+
kind: CAPApplication
28+
metadata:
29+
name: test-ca-01
30+
namespace: default
31+
spec:
32+
btp:
33+
services:
34+
- class: xsuaa
35+
name: cap-uaa
36+
secret: cap-cap-01-uaa-bind-cf
37+
- class: xsuaa
38+
name: cap-uaa2
39+
secret: cap-cap-01-uaa2-bind-cf
40+
- class: service-manager
41+
name: cap-service-manager
42+
secret: cap-cap-01-svc-man-bind-cf
43+
btpAppName: test-cap-01
44+
domains:
45+
istioIngressGatewayLabels:
46+
- name: app
47+
value: istio-ingressgateway
48+
- name: istio
49+
value: ingressgateway
50+
primary: app-domain.test.local
51+
secondary:
52+
- foo.bar.local
53+
globalAccountId: btp-glo-acc-id
54+
```
55+
56+
### Version Configuration (`CAPApplicationVersion`)
57+
58+
Create a `CAPApplicationVersion` in the same namespace as the `CAPApplication` with service workloads and any content jobs. The `serviceExposures` section defines how the service is exposed externally, for example, via Istio `VirtualService` resources.
59+
60+
```yaml
61+
apiVersion: sme.sap.com/v1alpha1
62+
kind: CAPApplicationVersion
63+
metadata:
64+
name: cav-ca-app-01-1
65+
namespace: default # Same namespace as CAPApplication
66+
spec:
67+
capApplicationInstance: test-ca-01 # Reference to the CAPApplication
68+
version: "0.0.1"
69+
registrySecrets:
70+
- regcred
71+
workloads:
72+
- name: cap-backend-service
73+
consumedBTPServices: # Services used by this workload
74+
- app-uaa
75+
- app-service-manager
76+
- app-saas-registry
77+
deploymentDefinition:
78+
type: Service # Defines this as a service workload
79+
image: app.some.repo.example.com/srv/server:0.0.1
80+
env:
81+
- name: CDS_ENV
82+
value: production
83+
ports:
84+
- name: server
85+
port: 4004
86+
appProtocol: http
87+
- name: api
88+
port: 8000
89+
appProtocol: http
90+
- name: metrics
91+
port: 4005
92+
appProtocol: http
93+
- name: service-content # Example content job
94+
consumedBTPServices:
95+
- app-uaa
96+
- app-html5-repo-host
97+
- app-portal
98+
jobDefinition:
99+
type: Content
100+
image: app.some.repo.example.com/approuter/content:0.0.1
101+
backoffLimit: 1
102+
serviceExposures:
103+
- subDomain: service
104+
routes:
105+
- workloadName: cap-backend-service
106+
port: 4004
107+
- subDomain: api
108+
routes:
109+
- workloadName: cap-backend-service
110+
port: 8000
111+
path: /api
112+
```
113+
114+
### Important Considerations
115+
116+
* The `CAPApplication` reaches a `Consistent` state, only after
117+
- the latest `CAPApplicationVersion` is Ready.
118+
- the creation of Istio `VirtualService`, which allows HTTP requests on the `serviceExposure` subdomain to reach the application.
119+
* The `CAPApplication` status for services only applications will have a `servicesOnly` field set to `true`.
120+
* There is no `CAPTenant` or other tenant related resources created for such services only scenario. Any tenant-related logic within the service itself is the responsibility of the consuming application.
121+
* You cannot switch a `CAPApplicationVersion` between services only and tenant-dependent modes after initial creation of overall application. Choose the appropriate mode from the start.
122+
* A successful upgrade of the `CAPApplicationVersion` will cause any service related `VirtualService` resources to be modified to route HTTP traffic to the deployments of the newer `CAPApplicationVersion`. Once a new `CAPApplicationVersion` is `Ready` and the service only application is automatically upgraded, the outdated `CAPApplicationVersion` can be deleted.

website/content/en/docs/usage/version-monitoring.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Version Monitoring"
33
linkTitle: "Version Monitoring"
4-
weight: 50
4+
weight: 60
55
type: "docs"
66
description: >
77
How to monitor versions for automatic cleanup

website/content/en/docs/whats-new.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@ description: >
99
### New updates
1010

1111
{{% cardpane %}}
12+
{{% card header="Q1 2025" %}}
13+
CAP Operator now supports `Services Only` applications that are tenant independent. Learn more about [Services Only Applications](./usage/services-workload).
14+
{{% /card %}}
1215
{{% card header="Q4 2024" %}}
13-
CAP Operator now emits prometheus metrics for [Controller](docs/concepts/operator-components/controller/) and [Subscription Server](docs/concepts/operator-components/subscription-server/) components. Learn more about [metrics](./usage/operator-metrics.md).
16+
CAP Operator now emits prometheus metrics for [Controller](docs/concepts/operator-components/controller/) and [Subscription Server](docs/concepts/operator-components/subscription-server/) components. Learn more about [metrics](./usage/operator-metrics).
1417
{{% /card %}}
1518
{{% card header="Q3 2024" %}}
16-
Define monitoring configuration on version workloads which allow outdated versions to be automatically cleaned up based on usage. Learn more about [Version Monitoring](./usage/version-monitoring.md).
19+
Define monitoring configuration on version workloads which allow outdated versions to be automatically cleaned up based on usage. Learn more about [Version Monitoring](./usage/version-monitoring).
1720
{{% /card %}}
1821
{{% card header="Q3 2024" %}}
19-
New Custom Resource `CAPTenantOutput` can be used to record subscription related data from tenant operations. [Learn more](./usage/resources/captenantoutput.md).
22+
New Custom Resource `CAPTenantOutput` can be used to record subscription related data from tenant operations. [Learn more](./usage/resources/captenantoutput).
2023
{{% /card %}}
2124
{{% card header="Q2 2024" %}}
2225
`CAPApplicationVersion` now supports configuration of `initContainers`, `volumes`, `serviceAccountName`, [scheduling related configurations](https://kubernetes.io/docs/concepts/scheduling-eviction/) etc. on workloads.

website/includes/api-reference.html

+12-1
Original file line numberDiff line numberDiff line change
@@ -1218,6 +1218,17 @@ <h3 id="sme.sap.com/v1alpha1.CAPApplicationStatus">CAPApplicationStatus
12181218
</tr>
12191219
<tr>
12201220
<td>
1221+
<code>servicesOnly</code><br/>
1222+
<em>
1223+
bool
1224+
</em>
1225+
</td>
1226+
<td>
1227+
<p>Represents whether this is a services only scenario</p>
1228+
</td>
1229+
</tr>
1230+
<tr>
1231+
<td>
12211232
<code>domainSpecHash</code><br/>
12221233
<em>
12231234
string
@@ -3431,5 +3442,5 @@ <h3 id="sme.sap.com/v1alpha1.WorkloadMonitoring">WorkloadMonitoring
34313442
<hr/>
34323443
<p><em>
34333444
Generated with <code>gen-crd-api-reference-docs</code>
3434-
on git commit <code>d0e5f7e</code>.
3445+
on git commit <code>db9bfa6</code>.
34353446
</em></p>

website/includes/chart-values.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
| topologySpreadConstraints | list | `[]` | Default topology spread constraints (can be overwritten on component level) |
1414
| podLabels | object | `{}` | Additional pod labels for all components |
1515
| podAnnotations | object | `{}` | Additional pod annotations for all components |
16-
| monitoring | object | `{"enabled":false,"grafana":{"dashboard":{"configMapLabels":{"grafana_dashboard":"1"}}}}` | Monitoring configuration for all components |
16+
| monitoring | object | `{"enabled":false,"grafana":{"dashboard":{"configMapLabels":{"grafana_dashboard":"1"}}},"serviceMonitorSelectorLabels":{}}` | Monitoring configuration for all components |
1717
| monitoring.enabled | bool | `false` | Optionally enable Prometheus monitoring for all components (disabled by default) |
18+
| monitoring.serviceMonitorSelectorLabels | object | `{}` | Prometheus service monitor selector labels |
1819
| monitoring.grafana | object | `{"dashboard":{"configMapLabels":{"grafana_dashboard":"1"}}}` | Grafana configuration |
1920
| monitoring.grafana.dashboard.configMapLabels | object | `{"grafana_dashboard":"1"}` | Labels for selecting ConfigMaps with dashboards in Grafana |
2021
| controller.replicas | int | `1` | Replicas |

0 commit comments

Comments
 (0)