Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Image Modified

Creating ECDs

Creating an ECD is done by submitting an ECDeployment resource creation request to Kubernetes. Below are a few examples showing how this can be done. These examples use kubectl as the tool to create the ECDs. The same resources can be created using the EC Deployment Web Interface[hide](3.0[/hide]). This UI can also be used as a tool to configure the ECD YAML resource and then manage it using Kubectl or Helm (see below).

Managing ECDs with Kubectl

Use this command to retrieve all the EC deployments that are in your installation:

...

kubectl describe ecd <deployment name> -n <namespace>

Use this command to describe a specific EC deployment in yourinstallationto allow an ECD to be enabled/disables based on the scheduling of the workflow group(s) within the ECD:

kubectl edit ecd <your ECD name>

and then set enableOnSchedule to true or false in the spec: section.

spec:

  disabled: true

  enableOnSchedule: true

Managing ECDs with Helm 

ECD resources can easily be packaged into Helm charts to be able to orchestrate and parameterise them in CI/CD pipelines and using different Helm enabled tools.

...