A declarative approach to lifecycle management of add-ons is strongly recommended backed by the add-on payloads version controlled in your SCM/Git repository.
Use the below command to create/update an add-on in the controller based on a version controlled add-on spec that you can store in a Git repository. This enables users to develop automation for reproducible infrastructure.
./rctl apply -f addon-spec.yml
An illustrative example of the add-on spec YAML file is shown below. Add-On Labels can be specified as well with either just a key or key value pair.
apiVersion:infra.k8smgmt.io/v3kind:AddonVersionmetadata:# version namename:v1.0.7# labels. optionallabels:# example label with key value pairram16:label-v16# example label with just a key and no valueram17:# project name. optionalproject:defaultprojectspec:# add-on nameaddon:kubeless# template for different add-on typestemplate:# type of add-ontype:yaml# path of yaml manifestyamlFile:./kubeless.yaml
Below is an example config file to create an add-on with Helm Chart and values from different repositories
apiVersion:infra.k8smgmt.io/v3kind:AddonVersionmetadata:name:v1project:project1description:description for v1spec:addon:demorctladdon-new4namespace:rctltemplate:type:Helm3repository_ref:default-bitnamirepo_artifact_meta:helm:chartName:apachetag:8.5.4value_repository_ref:testrepo1additional_reference:git:revision:mainrepoArtifactFiles:-name:apache-valuesrelPath:apache-values.yamlfileType:HelmValuesFile
Use this command to retrieve the list of add-ons. The name of the add-ons, the type of payload and publish status are returned. An illustrative example is shown below where RCTL retrieves the list of add-ons
For an existing set of add-ons, you may want to tag all of them with a specific set of label(s). To accomplish this you can specify the names of all the add-ons you want to update and then call a bulk update command.
1) Specify the name of your add-ons in a file in .txt format
Example:
addon1
addon2
2) Use the following command to add the specified label(s) (-L) to all the addons specified in the text file. For example, in the command below, labels key1:value1 and key2 will be added to addon1 and addon2, the add-ons specified in my file.
Key Value Pair: in the format key:value (e.g. fruit:pear)
Key Only: in the format key: (e.g. fruit:)
Multiple labels are separated by a comma. In the example command above, key1:value1 is one label that is of type key:value pair and key2: is another label with type key only.
For an existing set of add-ons, you may have tagged them with a specific label and now want to delete that label from all the add-ons at once. To accomplish this, you can use this command.
1) Specify the name of your add-ons in a file in .txt format
Example:
addon1
addon2
2) Use the following command to delete the specified label(s) (-L) from all the addons specified in the text file. For example, in the command below, labels key1:value1 and key2 will be deleted from addon1 and addon2, the add-ons specified in my file.
Key Value Pair: in the format key:value (ex. fruit:pear)
Key Only: in the format key: (ex. fruit:)
Multiple labels are separated by a comma. In the example command above key1:value1 is one label that is of type key:value pair and key2: is another label with type key only.
Use this command to retrieve a specific add-on's details in the configured project.
./rctl get addon <addon-name> --v3
Below is the illustrative example for the add-on called "datadog-helm3"
./rctl get addon datadog-helm3 --v3
+--------------+------------------------------+
| VERSION NAME | CREATED AT |
+--------------+------------------------------+
| v1 | Mon Jun 29 04:41:11 UTC 2020 |
+--------------+------------------------------+
Or you can use below command to get more information of the add-on in json or yaml format
To create/update a new version of an existing add-on, use the below command. Ensure that you specify the version number for your add-on in the specification file.
./rctl apply -f <addon-spec.yml>
For example, the version for this add-on update is highlighted below.
apiVersion:infra.k8smgmt.io/v3kind:AddonVersionmetadata:# version namename:v0.9.1# project name. optionalproject:defaultprojectspec:# addon nameaddon:vault-server# template for different addon typestemplate:# type of addontype:helm3chartFile:addon/examples/vault-0.9.1.tgz# values file is optionalvaluesFile:addon/examples/vault-values.yaml
You can delete an add-on in the configured project. Note that add-ons in active use in a cluster blueprint cannot be deleted and the caller will be provided with an error message.
Users can also create multiple add-on(s) with a set of defined configurations. The template file contains a list of objects that helps to create multiple add-on(s) from a single template.
Users can create one or more add-ons with the required configuration defined in the template file. Below is an example of an add-on value file. This file helps to create add-on with version v1.0 along with the specified label key values
Labels:
- Key: app
Value: addon
Version: v1.0
Important
Only the objects defined in the template must be present in the value files
Use the command below to create add-on(s) with the specified configuration once the value file(s) are prepared with the necessary objects.
./rctl apply -t addon.tmpl -v values.yaml
where,
- addon.tmpl: template file
- value.yaml: value file
Refer Templating for more details on Templating flags and examples