diff --git a/helm/ph-ee-engine/connector-bulk/templates/deployment.yaml b/helm/ph-ee-engine/connector-bulk/templates/deployment.yaml index e5ef7003a..0cbbf7b88 100644 --- a/helm/ph-ee-engine/connector-bulk/templates/deployment.yaml +++ b/helm/ph-ee-engine/connector-bulk/templates/deployment.yaml @@ -35,6 +35,12 @@ spec: memory: "{{ .Values.requests.memory }}" cpu: "{{ .Values.requests.cpu }}" env: + - name: "SERVER_PORT" + value: "{{ .Values.deployment.serverPort }}" + - name: "SERVER_SSL_ENABLED" + value: "{{ .Values.deployment.serverSslEnabled }}" + - name: "SECURITY_JWS_ENABLE" + value: "{{ .Values.deployment.securityJwsEnable }}" - name: "SPRING_PROFILES_ACTIVE" value: "{{ .Values.global.SPRING_PROFILES_ACTIVE }}" - name: "CAMEL_DISABLE-SSL" diff --git a/helm/ph-ee-engine/connector-bulk/values.yaml b/helm/ph-ee-engine/connector-bulk/values.yaml index 92e2a3584..99ceb9156 100644 --- a/helm/ph-ee-engine/connector-bulk/values.yaml +++ b/helm/ph-ee-engine/connector-bulk/values.yaml @@ -71,3 +71,6 @@ deployment: apiVersion: "apps/v1" annotations: deployTime: "{{ .Values.deployTime }}" + serverPort: "8443" + serverSslEnabled: true + securityJwsEnable: true diff --git a/helm/ph-ee-engine/values.yaml b/helm/ph-ee-engine/values.yaml index b75512087..9592776ff 100644 --- a/helm/ph-ee-engine/values.yaml +++ b/helm/ph-ee-engine/values.yaml @@ -1656,6 +1656,9 @@ connector_bulk: requests: memory: "512M" cpu: "100m" + serverPort: "8443" + serverSslEnabled: true + securityJwsEnable: true # Allows you to add any config files in /usr/share/ # such as ph-ee-connector-bulk.yml for deployment # ph-ee-connector-bulkConfig: {}