Downloading the ConfigValues File
This topic describes how to access and download the ConfigValues file for an installed application instance so that you can share the file with your users.
About ConfigValues Files
A ConfigValues file is a YAML manifest file that defines the user-supplied configuration values for an application. To configure an application using the kots CLI rather than using the Replicated admin console Config page, users must provide a ConfigValues file when they run the kots install
command.
During application installation, the app manager reads the values provided in the ConfigValues file to configure the application. For more information about how users provide a ConfigValues file when installing with the kots CLI, see Using Automation to Install on an Existing Cluster in the Enterprise section.
The following is an example of a ConfigValues file:
apiVersion: kots.io/v1beta1
kind: ConfigValues
spec:
values:
text_config_field_name:
default: Example default value
value: Example user-provided value
boolean_config_field_name:
value: "1"
password_config_field_name:
valuePlaintext: examplePassword
As shown in the example above, the ConfigValues file includes the names of configuration fields along with a user-supplied value for each field. Where applicable, the ConfigValues file can also include the default values of the configuration fields.
In the ConfigValues file, users can include any optional or required configuration fields that you defined in the Config custom resource for the release. For any required configuration fields that do not have a default value, users must provide a value in the ConfigValues file to install the application.
For more information about how to create custom configuration fields for your application in the Config custom resource, see Config in Reference.
Download the ConfigValues File
During application installation, the Replicated app manager automatically generates a ConfigValues file and saves the file in a directory called upstream
. After installing an application, you can view this generated ConfigValues file in the admin console View files page. You can also download the file using the kots CLI.
To allow your users to install and configure your application with the kots CLI, Replicated recommends that you provide your users with an example of an accurate ConfigValues file. To create this example, you can use the ConfigValues file generated by the app manager for an instance of your application that you installed in a development environment.
To download the ConfigValues file for an installed instance of your application:
Install the desired release for your application in a development environment. For more information, see About Installing an Application.
Run the following command to download the manifest files for the installed instance of the application:
kubectl kots download --namespace APP_NAMESPACE --slug APP_SLUG --decrypt-password-values
Replace:
APP_NAMESPACE
with the namespace on the cluster where you installed your application.APP_SLUG
with the slug of the application.
The app manager downloads your application files from the cluster. The output of this command provides the location of the downloaded files in your local directory.
noteThe
--decrypt-password-values
flag decrypts all configuration fields withtype: password
. In the downloaded ConfigValues file, the decrypted value is stored in avaluePlaintext
field. For more information, see kots download.In your local directory, navigate to the directory where the app manager downloaded the files. Open the ConfigValues file located at
upstream/userdata/config.yaml
in a text editor.Example:
The following is an example of a ConfigValues file generated by the app manager:
apiVersion: kots.io/v1beta1
kind: ConfigValues
metadata:
creationTimestamp: null
name: nginx
spec:
values:
example_text_config_field:
value: A user-supplied value
example_password_config_field:
valuePlaintext: password
example_boolean_config_field:
default: "0"
value: "1"
readonly_example:
value: Xp1l3JHds2
hidden_example:
value: sIpE9njpy0SWyw9Ht6K+rPzeke1DjG619Lnv4radKJS7lFUfmdzi2+MIJEj33k8PRyYM/eAGtes=
status: {}Edit the contents of the ConfigValues file to create an example file that you will share with your users:
Remove any configuration fields that have
readonly
set totrue
. Users cannot edit read only fields. For more information, see readonly in Config.Remove the
metadata
andstatus
fields. These fields are automatically generated because the file is a Kubernetes custom resource. The app manager does not use themetadata
orstatus
fields.(Optional) Remove any fields that have
hidden
set totrue
. Fields withhidden
set totrue
can be edited by users, but are hidden from the admin console Config page. For more information, see hidden in Config.
In the example ConfigValues file that you will give to your users, write comments to describe the following:
The fields that are required and optional. For any required configuration fields that do not have a default value, users must provide a value in the ConfigValues file to install the application.
The supported values for each configuration field. For example, for
select_one
fields, document each of the possible values that users can provide.The supported YAML format for each value. The following table describes the supported value format for each configuration field type:
Field Type Supported Value Format bool
"1"
specifies true and"0"
specifies false.bool_config_field:
value: "1"bool_config_field:
value: "0"file
A
filename
field and a Base64 encoded string of the contents of the file in thevalue
field.file_config_field:
filename: my-file.txt
value: JVBERi0xLjQKMSAw...password
A
valuePlaintext
field that contains the password in plain text. The app manager encrypts any values invaluePlaintext
fields during installation.password_config_field:
valuePlaintext: myPlainTextPasswordselect_one
The
value
must match the name of one of the options for theselect_one
field as defined in the Config custom resource manifest.select_one_config_field:
value: option_nametext
Plain text in the
value
field.text_config_field:
value: This is a text field value.textarea
Plain text in the
value
field.textarea_config_field:
value: This is a text area field value.For more information about each configuration field type in the Config custom resource, see Config.