![REUSE status](https://api.reuse.software/badge/github.com/cap-js/cap-operator-plugin)
CAP Operator Plugin
CAP Operator Plugin provides an easy way to generate CAP Operator resources to deploy multitenant CAP Applications.
Requirements
The CAP Operator plugin requires @sap/cds-dk: ">=7.8.1"
. If @sap/cds-dk is installed globally, please ensure that the installed version is greater than or equal to 7.8.1
.
Setup
To integrate the CAP Operator Plugin into your project, follow these steps:
- Add this self-configuring plugin package to your project:
npm add @cap-js/cap-operator-plugin -D
-
After installation, execute one of the following commands based on your requirements:
-
To add a basic chart folder, use:
cds add cap-operator
During cds build
, the plugin will automatically inject the templates folder into the final chart.
-
To add a chart folder with templates included, use:
cds add cap-operator --with-templates
During cds build
, the plugin will copy the templates folder into the final chart.
⚠️ Experimental
To add a chart folder with the values.yaml prefilled with the design-time deployment details from the mta and mta extensions, use:
cds add cap-operator --with-mta <mta-yaml-file-path> --with-mta-extensions <mta-ext-yaml-file-path>
If you have multiple mta extensions, you can pass them as a comma-separated string to merge them.
-
Once executed, the chart folder or chart folder with templates will be added to your project directory.
-
The values.yaml
requires two types of details:
- Design-time deployment details
- Runtime deployment details
- app
- btp
- imagePullSecrets
- env information inside workloads like database instance ID
As a developer, you must fill in the design-time deployment details in the values.yaml
file, which can then be pushed to your repository. The plugin will auto-populate some of these details based on the project configuration, but verifying them and manually filling in any missing information is essential. You can refer to values.schema.json
file for the structure of the values.yaml
file.
You can utilize a YAML schema validation extension such as YAML, or run the following command to validate the values.yaml
file. You can ignore the errors from runtime values as they are not filled in yet.
helm lint <chart-path>
-
After filling all the design-time information in values.yaml
, run cds build
. The final chart will be generated in the gen
folder within your project directory.
-
Now to deploy the application, you can pass the runtime values in a separate runtime-values.yaml
file and deploy the chart using the following command:
helm upgrade -i -n <namespace> <release-name> <project-path>/gen/chart -f <runtime-values.yaml-path>
As a reference, you can check out the CAP Operator helm chart in the sample incident app. And also the corresponding runtime-values.yaml file.
❗Things to Note
-
If you are adding the basic chart folder using the cds add cap-operator
command, do not modify the values.schema.json
file. The templates injected automatically during cds build
are tightly coupled with the structure in values.schema.json
. If schema changes are needed, use option --with-templates
to add the templates folder and adjust them accordingly.
-
When defining environment variables for workloads in the values.yaml
file, it's important to mirror these definitions in the runtime-values.yaml
file. This ensures consistency and avoids potential conflicts, as Helm does not merge arrays. If you're introducing new environment variables in runtime-values.yaml
for a workload, remember to include existing variables from values.yaml
to maintain coherence.
Contributing
This project is open to feature requests/suggestions, bug reports etc. via GitHub 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.
Code of Conduct
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its Code of Conduct at all times.
Licensing
Copyright 2024 SAP SE or an SAP affiliate company and cap-operator-plugin contributors. Please see our LICENSE for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available via the REUSE tool.