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
6 changes: 6 additions & 0 deletions helm/ph-ee-engine/connector-bulk/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions helm/ph-ee-engine/connector-bulk/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,6 @@ deployment:
apiVersion: "apps/v1"
annotations:
deployTime: "{{ .Values.deployTime }}"
serverPort: "8443"
serverSslEnabled: true
securityJwsEnable: true
3 changes: 3 additions & 0 deletions helm/ph-ee-engine/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}
Expand Down