Application
The Application custom resource enables features such as branding, release notes, port forwarding, dashboard buttons, app status indicators, and custom graphs.
There is some overlap between the Application custom resource manifest file and the Kubernetes SIG Application custom resource. For example, enabling features such as adding a button to the dashboard requires the use of both the Application and SIG Application custom resources.
The following is an example manifest file for the Application custom resource:
apiVersion: kots.io/v1beta1
kind: Application
metadata:
name: my-application
spec:
title: My Application
icon: https://support.io/img/logo.png
releaseNotes: These are our release notes
allowRollback: false
kubectlVersion: ">=1.22.0 <1.25.0"
kustomizeVersion: ">= 4.0.0"
targetKotsVersion: "1.60.0"
minKotsVersion: "1.40.0"
requireMinimalRBACPrivileges: false
additionalImages:
- jenkins/jenkins:lts
additionalNamespaces:
- "*"
ports:
- serviceName: web
servicePort: 9000
localPort: 9000
applicationUrl: "http://web"
statusInformers:
- deployment/my-web-svc
- deployment/my-worker
graphs:
- title: User Signups
query: 'sum(user_signup_events_total)'
title
Description | The application title. Used on the license upload and in various places in the Replicated admin console. |
---|---|
Example |
|
Supports Go templates? | No |
icon
Description | The icon file for the application. Used on the license upload and in various places in the admin console. |
---|---|
Example |
|
Supports Go templates? | No |
releaseNotes
Description | The release notes for this version. These can also be set when promoting a release. |
---|---|
Example |
|
Supports Go templates? | No |
allowRollback
Description | Enable this flag to create a Rollback button on the admin console Version History page. If an application is guaranteed not to introduce backwards-incompatible versions, such as through database migrations, then the Rollback does not revert any state. Rather, it recovers the YAML manifests that are applied to the cluster. |
---|---|
Example |
|
Default | false |
Supports Go templates? | No |
additionalNamespaces
Description | An array of additional namespaces as strings that the app manager creates on the cluster. For more information, see Defining Additional Namespaces. In addition to creating the additional namespaces, the app manager ensures that the application secret exists in the namespaces. The app manager also ensures that this application secret has access to pull the application images, including both images that are used and any images you add in the For dynamically created namespaces, specify |
---|---|
Example |
|
Supports Go templates? | No |
additionalImages
Description | An array of strings that reference images to be included in air gap bundles and pushed to the local registry during installation. The app manager detects images from the PodSpecs in the application. Some applications, such as Operators, might need to include additional images that are not referenced until runtime. For more information, see Defining Additional Images. |
---|---|
Example |
|
Supports Go templates? | No |
kubectlVersion
Description | Specifies the version of the kubectl command-line tool that the app manager uses. You can specify an optional Semantic Version range for If the specified version or range does not match any supported versions, the latest version from the above list of supported versions is used. For backwards compatibility, exact versions are also supported. When an exact version is specified, the app manager chooses the matching version if it is supported. If the specific version is not supported, the app manager chooses the latest supported minor and patch version for the specified major version. |
---|---|
Example |
|
Default | When
|
Supports Go templates? | No |
kustomizeVersion
Description | Specifies the version of Kustomize that the app manager uses. You can specify a Semantic Version range, as defined by blang. See Ranges in the blang GitHub repository. The latest supported version in the provided range is used. For backwards compatibility, exact versions are also supported. When an exact version is specified, the app manager chooses the matching version if it is supported. If the specific version is not supported, the app manager chooses the latest supported minor and patch version for the specified major version. |
---|---|
Example |
|
Default | When The following major versions of Kustomize are supported:
|
Supports Go templates? | No |
requireMinimalRBACPrivileges
Description |
Requires minimal role-based access control (RBAC) be used for all customer installations. When set to For additional requirements and limitations related to using namespace-scoped RBAC, see About Namespace-scoped RBAC in Configuring App Manager RBAC. |
---|---|
Example |
|
Default | false |
Supports Go templates? | No |
supportMinimalRBACPrivileges
Description |
Allows minimal role-based access control (RBAC) be used for all customer installations. When set to Minimal RBAC is not used by default. It is only used when the For additional requirements and limitations related to using namespace-scoped RBAC, see About Namespace-scoped RBAC in Configuring App Manager RBAC. |
---|---|
Example |
|
Default | false |
Supports Go templates? | No |
ports
Description | Extra ports (additional to the :8800 admin console port) that are port-forwarded when running the You can use the For more information about configuring a custom link in Kubernetes installer clusters to a
|
---|---|
Example |
|
Supports Go templates? | No |
statusInformers
Description | Resources to watch and report application status back to the user. When you include
For more information about including statusInformers, see Displaying Application Status. |
---|---|
Example |
The following example shows excluding a specific status informer based on a user-supplied value from the admin console Configuration screen:
|
Supports Go templates? | Yes |
graphs
Description | Custom graphs to include on the admin console application dashboard. For more information about how to create custom graphs, see Adding Custom Graphs.
|
---|---|
Example |
|
Supports Go templates? | Yes |
proxyRegistryDomain
Description | The custom domain used for proxy.replicated.com. For more information, see Custom Registry Domains. Introduced in app manager v1.91.1. |
---|---|
Example |
|
Supports Go templates? | No |
targetKotsVersion
Description | The app manager (KOTS) version that is targeted by the release. For more information, see Setting Minimum and Target Versions for KOTS. Introduced in app manager v1.62.0. |
---|---|
Example |
|
Supports Go templates? | No |
minKotsVersion (Beta)
Description | The minimum app manager (KOTS) version that is required by the release. For more information, see Setting Minimum and Target Versions for KOTS. Introduced in app manager v1.62.0. |
---|---|
Example |
|
Supports Go templates? | No |