TVK 2.7.1 Patch update
parent
542a82894f
commit
c10ef6d787
|
@ -0,0 +1,112 @@
|
|||
questions:
|
||||
- variable: installTVK.enabled
|
||||
default: true
|
||||
description: "Enabled to perform TVM installation with TVK Operator"
|
||||
required: true
|
||||
type: boolean
|
||||
label: "Install TVK Manager"
|
||||
group: "TVM Install Configuration"
|
||||
|
||||
- variable: installTVK.applicationScope
|
||||
default: Cluster
|
||||
description: "TVK Installation Scope: Cluster or Namespaced"
|
||||
required: true
|
||||
type: enum
|
||||
label: "TVK Installation Scope"
|
||||
group: "TVM Install Configuration"
|
||||
options:
|
||||
- "Cluster"
|
||||
- "Namespaced"
|
||||
|
||||
- variable: installTVK.ingressConfig.host
|
||||
default: "rancher.k8s-tvk.com"
|
||||
description: "Hostname URL to access TVM Management Console For example: rancher.k8s-tvk.com"
|
||||
required: true
|
||||
type: hostname
|
||||
label: "TVK Management Console Hostname URL"
|
||||
group: "Ingress Configuration"
|
||||
|
||||
- variable: installTVK.ingressConfig.tlsSecretName
|
||||
default: ""
|
||||
description: "TLS Secret name to access TVK Management Console over HTTPS. Secret should of kubernetes.io/tls type"
|
||||
required: false
|
||||
type: secret
|
||||
label: "TLS Secret Name of kubernetes.io/tls type (Optional)"
|
||||
group: "Ingress Configuration"
|
||||
|
||||
- variable: installTVK.ComponentConfiguration.ingressController.enabled
|
||||
default: true
|
||||
description: "Option to enable/disable the ingress controller"
|
||||
required: true
|
||||
type: boolean
|
||||
label: "Ingress Controller"
|
||||
group: "Ingress Configuration"
|
||||
|
||||
- variable: installTVK.ComponentConfiguration.ingressController.service.type
|
||||
show_if: "installTVK.ComponentConfiguration.ingressController.enabled=true"
|
||||
default: "NodePort"
|
||||
description: "Ingress Controller Service Type to access the TVK Management Console"
|
||||
required: true
|
||||
type: enum
|
||||
label: "Ingress Controller Service Type"
|
||||
group: "Ingress Configuration"
|
||||
options:
|
||||
- "NodePort"
|
||||
- "LoadBalancer"
|
||||
|
||||
- variable: installTVK.ingressConfig.ingressClass
|
||||
show_if: "installTVK.ComponentConfiguration.ingressController.enabled=false"
|
||||
default: ""
|
||||
description: "Provide name of Ingress class to reuse. If not provided, TVK will create new ingress class"
|
||||
required: true
|
||||
type: string
|
||||
label: "Ingress Class Name"
|
||||
group: "Ingress Configuration"
|
||||
|
||||
- variable: installTVK.ingressConfig.annotations
|
||||
show_if: "installTVK.ComponentConfiguration.ingressController.enabled=false"
|
||||
default: ""
|
||||
description: "Annotations for TVM ingress resources For example: {'foo':'bar'}"
|
||||
required: false
|
||||
type: string
|
||||
label: "Ingress Resource Annotations (Optional)"
|
||||
group: "Ingress Configuration"
|
||||
|
||||
- variable: proxySettings.PROXY_ENABLED
|
||||
default: false
|
||||
description: "Checkbox is marked to use of user defined proxy"
|
||||
required: false
|
||||
type: boolean
|
||||
label: "Proxy Settings (Optional)"
|
||||
group: "Proxy Settings"
|
||||
show_subquestion_if: true
|
||||
subquestions:
|
||||
- variable: proxySettings.NO_PROXY
|
||||
default: ""
|
||||
description: "Provide the user defined IPs/hosts and subnets to exempt from proxy. User can provide comma seperated values"
|
||||
required: false
|
||||
type: string
|
||||
label: "No Proxy (Optional)"
|
||||
group: "Proxy Settings"
|
||||
- variable: proxySettings.HTTP_PROXY
|
||||
default: ""
|
||||
description: "Option to provide HTTP proxy information. For example: http://<uname>:<password>@<IP>:<Port>"
|
||||
required: true
|
||||
type: string
|
||||
label: "HTTP Proxy"
|
||||
group: "Proxy Settings"
|
||||
- variable: proxySettings.HTTPS_PROXY
|
||||
default: ""
|
||||
description: "Option to provide HTTPS proxy information. For example: https://<uname>:<password>@<IP>:<Port>"
|
||||
required: true
|
||||
type: string
|
||||
label: "HTTPS Proxy"
|
||||
group: "Proxy Settings"
|
||||
- variable: proxySettings.CA_BUNDLE_CONFIGMAP
|
||||
default: ""
|
||||
description: "Option to provide CA Certificate bundle configmap present on the Kubernetes cluster"
|
||||
required: false
|
||||
type: string
|
||||
label: "CA Certificate Bundle Configmap Name(Optional)"
|
||||
group: "Proxy Settings"
|
||||
|
|
@ -3,7 +3,7 @@
|
|||
@@ -12,3 +12,7 @@
|
||||
sources:
|
||||
- https://github.com/trilioData/k8s-triliovault-operator
|
||||
version: 2.7.0
|
||||
version: 2.7.1
|
||||
+annotations:
|
||||
+ catalog.cattle.io/certified: partner
|
||||
+ catalog.cattle.io/release-name: k8s-triliovault-operator
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
url: https://raw.githubusercontent.com/trilioData/triliovault--operator/master/k8s-triliovault-operator-2.7.0.tgz
|
||||
url: https://raw.githubusercontent.com/trilioData/triliovault--operator/master/k8s-triliovault-operator-2.7.1.tgz
|
||||
packageVersion: 00
|
||||
|
|
Loading…
Reference in New Issue