update prototype GUI to reflect PR changes
This commit is contained in:
@@ -20,4 +20,4 @@ name: prototype-gui
|
|||||||
sources:
|
sources:
|
||||||
- https://github.com/truecharts/apps/tree/master/develop/prototype-gui
|
- https://github.com/truecharts/apps/tree/master/develop/prototype-gui
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.3
|
version: 0.0.4
|
||||||
|
|||||||
@@ -5,6 +5,8 @@ groups:
|
|||||||
description: "Configure workload deployment"
|
description: "Configure workload deployment"
|
||||||
- name: "Container Configuration"
|
- name: "Container Configuration"
|
||||||
description: "additional container configuration"
|
description: "additional container configuration"
|
||||||
|
- name: "App Configuration"
|
||||||
|
description: "App specific config options"
|
||||||
- name: "Networking and Services"
|
- name: "Networking and Services"
|
||||||
description: "Configure Network and Services for container"
|
description: "Configure Network and Services for container"
|
||||||
- name: "Storage and Persistence"
|
- name: "Storage and Persistence"
|
||||||
@@ -17,8 +19,6 @@ groups:
|
|||||||
description: "Specify resources/devices to be allocated to workload"
|
description: "Specify resources/devices to be allocated to workload"
|
||||||
- name: "Advanced"
|
- name: "Advanced"
|
||||||
description: "Advanced Configuration"
|
description: "Advanced Configuration"
|
||||||
- name: "WARNING"
|
|
||||||
description: "WARNING"
|
|
||||||
portals:
|
portals:
|
||||||
web_portal:
|
web_portal:
|
||||||
protocols:
|
protocols:
|
||||||
@@ -57,7 +57,7 @@ questions:
|
|||||||
default: "Deployment"
|
default: "Deployment"
|
||||||
required: true
|
required: true
|
||||||
enum:
|
enum:
|
||||||
- value: "Deployment"
|
- value: "deployment"
|
||||||
description: "Deployment"
|
description: "Deployment"
|
||||||
- value: "statefulset"
|
- value: "statefulset"
|
||||||
description: "Statefulset"
|
description: "Statefulset"
|
||||||
@@ -126,6 +126,12 @@ questions:
|
|||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
|
|
||||||
|
- variable: hostNetwork
|
||||||
|
group: "Networking and Services"
|
||||||
|
label: "(Advanced) Enable Host Networking"
|
||||||
|
schema:
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
- variable: externalInterfaces
|
- variable: externalInterfaces
|
||||||
description: "External Interfaces"
|
description: "External Interfaces"
|
||||||
label: "(Advanced) External Interfaces"
|
label: "(Advanced) External Interfaces"
|
||||||
@@ -201,12 +207,81 @@ questions:
|
|||||||
type: ipaddr
|
type: ipaddr
|
||||||
cidr: false
|
cidr: false
|
||||||
required: true
|
required: true
|
||||||
- variable: hostNetwork
|
- variable: externalInterfaces
|
||||||
|
description: "External Interfaces"
|
||||||
|
label: "(Advanced) External Interfaces"
|
||||||
group: "Networking and Services"
|
group: "Networking and Services"
|
||||||
label: "(Advanced) Enable Host Networking"
|
|
||||||
schema:
|
schema:
|
||||||
type: boolean
|
type: list
|
||||||
default: false
|
items:
|
||||||
|
- variable: interfaceConfiguration
|
||||||
|
description: "Interface Configuration"
|
||||||
|
label: "Interface Configuration"
|
||||||
|
schema:
|
||||||
|
type: dict
|
||||||
|
$ref:
|
||||||
|
- "normalize/interfaceConfiguration"
|
||||||
|
attrs:
|
||||||
|
- variable: hostInterface
|
||||||
|
description: "Please specify host interface"
|
||||||
|
label: "Host Interface"
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
$ref:
|
||||||
|
- "definitions/interface"
|
||||||
|
- variable: ipam
|
||||||
|
description: "Define how IP Address will be managed"
|
||||||
|
label: "IP Address Management"
|
||||||
|
schema:
|
||||||
|
type: dict
|
||||||
|
required: true
|
||||||
|
attrs:
|
||||||
|
- variable: type
|
||||||
|
description: "Specify type for IPAM"
|
||||||
|
label: "IPAM Type"
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
enum:
|
||||||
|
- value: "dhcp"
|
||||||
|
description: "Use DHCP"
|
||||||
|
- value: "static"
|
||||||
|
description: "Use static IP"
|
||||||
|
show_subquestions_if: "static"
|
||||||
|
subquestions:
|
||||||
|
- variable: staticIPConfigurations
|
||||||
|
label: "Static IP Addresses"
|
||||||
|
schema:
|
||||||
|
type: list
|
||||||
|
items:
|
||||||
|
- variable: staticIP
|
||||||
|
label: "Static IP"
|
||||||
|
schema:
|
||||||
|
type: ipaddr
|
||||||
|
cidr: true
|
||||||
|
- variable: staticRoutes
|
||||||
|
label: "Static Routes"
|
||||||
|
schema:
|
||||||
|
type: list
|
||||||
|
items:
|
||||||
|
- variable: staticRouteConfiguration
|
||||||
|
label: "Static Route Configuration"
|
||||||
|
schema:
|
||||||
|
type: dict
|
||||||
|
attrs:
|
||||||
|
- variable: destination
|
||||||
|
label: "Destination"
|
||||||
|
schema:
|
||||||
|
type: ipaddr
|
||||||
|
cidr: true
|
||||||
|
required: true
|
||||||
|
- variable: gateway
|
||||||
|
label: "Gateway"
|
||||||
|
schema:
|
||||||
|
type: ipaddr
|
||||||
|
cidr: false
|
||||||
|
required: true
|
||||||
- variable: service
|
- variable: service
|
||||||
group: "Networking and Services"
|
group: "Networking and Services"
|
||||||
label: "Configure Service(s)"
|
label: "Configure Service(s)"
|
||||||
@@ -596,12 +671,12 @@ questions:
|
|||||||
label: "CPU"
|
label: "CPU"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "100m"
|
default: "2000m"
|
||||||
- variable: memory
|
- variable: memory
|
||||||
label: "Memory (RAM)"
|
label: "Memory (RAM)"
|
||||||
schema:
|
schema:
|
||||||
type: string
|
type: string
|
||||||
default: "128Mi"
|
default: "2Gi"
|
||||||
- variable: requests
|
- variable: requests
|
||||||
label: "(Advanced) Request minimum resources required"
|
label: "(Advanced) Request minimum resources required"
|
||||||
schema:
|
schema:
|
||||||
|
|||||||
Reference in New Issue
Block a user