Skip to content

Commit c1dc6c5

Browse files
committed
Publishing Helm Chart v1.0.1 with support for Azure Ingress Controller.
1 parent 30aff3e commit c1dc6c5

File tree

7 files changed

+10
-221
lines changed

7 files changed

+10
-221
lines changed

charts/hybriddatapipeline/ReadMe.txt

Lines changed: 0 additions & 92 deletions
This file was deleted.

charts/hybriddatapipeline/eula.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Review the EULA at: https://www.progress.com/legal/license-agreements/datadirect

charts/hybriddatapipeline/templates/haproxy-ingress.yaml

Lines changed: 0 additions & 54 deletions
This file was deleted.

charts/hybriddatapipeline/templates/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ spec:
9191
value: /app
9292
{{- end }}
9393
- name: ACCEPT_EULA
94-
value: "true"
94+
value: "{{.Values.hdp.eula.accepted}}"
9595
- name: HDP_ADMIN_PASSWORD
9696
valueFrom:
9797
secretKeyRef:

charts/hybriddatapipeline/tests/haproxy-ingress_test.yaml

Lines changed: 0 additions & 74 deletions
This file was deleted.

charts/hybriddatapipeline/tests/statefulset_test.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ tests:
77
- it: should render the statefulset with the correct release name and service name
88
set:
99
hdp.services.hdpService.name: "hdp-service"
10+
hdp.eula.accepted: "true"
1011
hdp.replicaCount: 3
1112
hdp.updateStrategy.type: "RollingUpdate"
1213
hdp.image.repository: "my-repo"

charts/hybriddatapipeline/values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
## @section hdp The parameters for configuring the Hybrid Data Pipeline (HDP) server. The Hybrid Data Pipeline Helm chart is used to deploy the HDP server as a Kubernetes pod in a Kubernetes cluster.
66
##
77
hdp:
8+
## This section manages the End User License Agreement (EULA) acceptance.
9+
## Setting 'accepted: true' indicates that you have read and agreed to the EULA.
10+
## Failure to accept the EULA may result in deployment failure.
11+
## you can review EULA here: https://www.progress.com/legal/license-agreements/datadirect
12+
eula:
13+
accepted: "false" # Indicates explicit acceptance of the EULA. Set to "true" to proceed. Review the EULA before accepting.
14+
815
## @param hdp.replicaCount The number of HDP server nodes to be deployed
916
##
1017
replicaCount: 2

0 commit comments

Comments
 (0)