Modifying Edge

For this example, assume that the Edge is deployed using the c8yedge-sample.yaml.

Example configuration change

Change the spec.domain field to sample.myown.iot.com and if required update the spec.licenseKey accordingly.

Save the file and use the command below to apply the changes:

kubectl apply -f c8yedge-sample.yaml

To verify the Edge deployment, see Verifying the Edge installation.

Upgrading Edge

The Edge Operator follows the recreate update strategy to upgrade the Edge deployment.

Recreating update strategy is an all-or-nothing process that updates all aspects of the system at once with a brief downtime period. The Edge Operator selects all the outdated pods and deactivates them at once. Once all old pods are deactivated, the Edge Operator creates updated pods for the entire system. Edge is not operational while the old pods are deactivating and until the final updated pod is created.

For this example, assume that Edge is deployed using the c8yedge-sample.yaml.

Starting the upgrade

To upgrade the Edge deployment, change the spec.version field in the Edge CR file to the appropriate version. For example to 1018.0.1.

Save the file and use the command below to apply the changes:

kubectl apply -f c8yedge-sample.yaml

To verify the Edge deployment, see Verifying the Edge installation.

Upgrading Edge remotely

For information about upgrading Edge remotely, see Upgrading Edge remotely.

Restarting the Edge Operator

Run this command to restart the Edge Operator.

kubectl rollout restart deployment -n c8yedge c8yedge-operator-controller-manager
Info
Substitute the namespace name c8yedge in the command above with the namespace name where you have installed the Edge Operator.

Upgrading the Edge Operator

The Edge Operator, once installed, will automatically upgrade when you upgrade Edge to a new version.

Uninstalling Edge

You can uninstall Edge either by:

Uninstalling the Edge Operator

Run this command for removing the Edge Operator from your Kubernetes cluster.

helm uninstall c8yedge-operator -n c8yedge
Info
Substitute the namespace name c8yedge in the command above with the namespace name where you have installed the Edge Operator.