# Deploying and Managing IOC Instances ## Introduction This tutorial will show you how to deploy and manage the example IOC Instance that came with the template beamline repository. You will need to have your own `bl01t` beamline repository from the previous tutorial. For these early tutorials we are not using Kubernetes and instead are deploying IOCs to the local docker or podman instance. So for these tutorials we shall pretend that your workstation is one of the IOC servers on the fictitious beamline `BL01T`. ## Continuous Integration Before we change anything, we shall make sure that the beamline repository CI is working as expected. To do this go to the following URL (make sure you insert your GitHub account name where indicated): ``` https://github.com/YOUR_GITHUB_ACCOUNT/bl01t/actions ``` You should see something like the following: :::{figure} ../images/bl01t-actions.png the GitHub Actions page for the example beamline repository ::: This is a list of all the Continuous Integration (CI) jobs that have been executed (or are executing) for your beamline repository. There should be two jobs listed, one for when you pushed the main branch and one for when you tagged with the `CalVer` version number. If you click on the most recent job you can drill in and see the steps that were executed. The most interesting step is `Run IOC checks`. This is executing the script `.github/workflows/ci_verify.sh`. This goes through each of the IOC Instances in the `services` folder and checks that they have valid configuration. For the moment just check that your CI passed and if not review that you have followed the instructions in the previous tutorial correctly. ## Set up Environment for BL01T Beamline The standard way to set up your environment for any ec services repository is to get the environment.sh script from the domain repository and source it. Start this section of the tutorial inside the vscode project that you created in the previous tutorial. Make sure you have a terminal open and the current working directory is your `bl01t` project root folder. First make sure you have the local binaries folder in your path by adding the following to the end of your `$HOME/.bash_profile` file: ```bash export PATH="$PATH:~/.local/bin" ``` Then follow these steps (make sure you insert your GitHub account name where indicated): ```bash # make sure we have the path setup from the bash_profile source ~/.bash_profile mkdir -p ~/.local/bin # make a copy of the environment.sh script named after the beamline cp environment.sh ~/.local/bin/bl01t source bl01t ``` Once you have done this and logged out and back in again to pick up your new profile you should be able to enable the `bl01t` environment as follows: ```bash # first make sure you have loaded your virtual environment for the ec tool source $HOME/ec-venv/bin/activate # DLS users don't need this step source bl01t ``` (deploy-example-instance)= ## Deploy the Example IOC Instance For this section we will be making use of the epics-containers-cli tool. This command line entry point for the tool is `ec`. For more details see: {any}`CLI` or try `ec --help`. The simplest command to check that the tool is working is `ps` which lists the IOC Instances that are currently running: ```bash ec ps ``` You should see no IOCs listed as you have not yet started an IOC Instance. The following command will deploy the example IOC instance to your local machine (unless you have skipped ahead and set up your Kubernetes config in which case the same command will deploy to your Kubernetes cluster). ```bash cd bl01t # (if you are not already in your beamline repo) ec deploy-local services/bl01t-ea-test-01 ``` You will be prompted to say that this is a *TEMPORARY* deployment. This is because we are deploying directly from the local filesystem. You should only use this for testing purposes because there is no guarantee that you could ever roll back to this version of the IOC (as it is lost as soon as filesystem changes are made). Local filesystem deployments are given a beta version number to indicate that they are not permanent. You can now see the beta IOC instance running with:
$ ec ps name version state image bl01t-ea-test-01 2024.2.16-b15.11 running ghcr.io/epics-containers/ioc-adsimdetector-linux-runtime:2024.2.1At the end of the last tutorial we tagged the beamline repository with a `CalVer` version number and pushed it up to GitHub. This means that we can now use that tagged release of the IOC instance. First let's check that the IOC instance version is available as expected. The following command lists all of the tagged versions of the IOC instance that are available in the GitHub repository.
$ ec instances bl01t-ea-test-01 Available instances for bl01t-ea-test-01: 2024.2.1:::{note} The above command is the first one to look at your github repository. This is how it finds out the versions of the IOC instance that are available. If you get an error it may be because you set EC_SERVICES_REPO incorrectly in environment.sh. Check it and source it again to pick up any changes. ::: :::{hint} ec supports command line completion, which means that entering `