Skip to content
Merged
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
18 changes: 15 additions & 3 deletions manifest.jps
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ onInstall:
To bind a custom domain name with your Kubernetes cluster please refer to the steps described in Jelastic [documentation](https://docs.jelastic.com/custom-domains).

onAfterScaleOut[cp]:
forEach(event.response.nodes):
connect-workers: ${@i.id}
- get-ids: event.response.nodes
- connect-workers: ${globals.ids}

onBeforeScaleIn[cp]:
forEach(event.response.nodes):
Expand All @@ -87,7 +87,7 @@ onBeforeClone: stopEvent
onBeforeRedeployContainer:
if (!${event.params.skipReinstall:false}): stopEvent

actions:
actions:
block-masters-scaling:
env.control.ApplyNodeGroupData[k8sm]:
data:
Expand Down Expand Up @@ -306,6 +306,18 @@ actions:
type: info
message: ${globals.monitoring_success}

get-ids:
- setGlobals:
ids: ''
sep: ''
- forEach(${this}):
add-id: ${@i.id}

add-id:
setGlobals:
ids: ${globals.ids:}${globals.sep:}${this}
sep: ','

addons:

- id: conf-k8s-addon
Expand Down