Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions helm-templates/facade-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ spec:
value: 'tls-password'
- name: GATEWAY_SYSTEM_TYPE
value: '{{ .Values.GATEWAY_SYSTEM_TYPE }}'
- name: GATEWAY_SYSTEM_NAMESPACE
value: '{{ .Values.GATEWAY_SYSTEM_NAMESPACE }}'
- name: GATEWAY_SYSTEM_NAME
value: '{{ .Values.GATEWAY_SYSTEM_NAME }}'
- name: READONLY_CONTAINER_FILE_SYSTEM_ENABLED
value: '{{ and .Values.READONLY_CONTAINER_FILE_SYSTEM_ENABLED (eq .Values.PAAS_PLATFORM "KUBERNETES") }}'
{{- if .Values.CLOUD_TOPOLOGIES }}
Expand Down
26 changes: 25 additions & 1 deletion helm-templates/facade-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,31 @@
"$id": "#/properties/GATEWAY_SYSTEM_TYPE",
"type": "string",
"title": "Gateway System Type",
"internal": true
"internal": true,
"examples": [
"legacy-ingress",
"legacy-ingress,gateway-api-default",
"gateway-api-default"
],
"description": "The mode of Gateway that applications must apply during installation. The value can be \"legacy-ingress\", \"gateway-api-default\" or \"legacy-ingress, gateway-api-default\". \n\nApplications must use contains helm condition in Helm charts."
},

"GATEWAY_SYSTEM_NAME": {
"$id": "#/properties/GATEWAY_SYSTEM_NAME",
"type": "string",
"title": "Gateway System Name",
"internal": true,
"examples": ["default-external-gateway"],
"description": "The value for spec.parentRefs.name of all Gateway API HttpRoute Custom Resources, that mean the name of gateway controller."
},

"GATEWAY_SYSTEM_NAMESPACE": {
"$id": "#/properties/GATEWAY_SYSTEM_NAMESPACE",
"type": "string",
"title": "Gateway System Namespace",
"internal": true,
"examples": ["gateway-system"],
"description": "The value for spec.parentRefs.namespace of all Gateway API HttpRoute Custom Resources, that mean the namespace of where gateway controller is deployed."
}
},
"additionalProperties": true
Expand Down
2 changes: 2 additions & 0 deletions helm-templates/facade-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ K8S_SERVICE_TYPE: 'CLUSTER_IP'
CONSUL_ENABLED: false
CONSUL_URL: ''
GATEWAY_SYSTEM_TYPE : ''
GATEWAY_SYSTEM_NAME : ''
GATEWAY_SYSTEM_NAMESPACE : ''
Loading