-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
136 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY | ||
_commit: 3.6.0 | ||
_src_path: gh:epics-containers/services-template-compose | ||
description: t01 IOC Instances and Services | ||
services: t01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
networks: | ||
channel_access: | ||
name: "channel_access" | ||
ipam: | ||
driver: default | ||
config: | ||
- subnet: "172.20.0.0/16" | ||
- subnet: "172.20.0.0/16" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
OPI Files | ||
========= | ||
|
||
All files under the opi/iocs folder will be generated by PVI at IOC runtime. | ||
|
||
These files are not committed to git and any changes made to them will be lost | ||
when the related IOC is restarted. | ||
|
||
To make custom opi files, create them in the opi folder or other subfolders of | ||
opi. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
services: | ||
|
||
replace_me: | ||
|
||
extends: | ||
service: linux_ioc | ||
file: ../../include/ioc.yml | ||
|
||
image: replace_with_image_uri | ||
|
||
labels: | ||
version: 0.1.0 | ||
|
||
environment: | ||
IOCSH_PS1: replace_me > | ||
IOC_NAME: replace_me | ||
|
||
volumes: | ||
- ../../opi/iocs/replace_me:/epics/opi | ||
|
||
configs: | ||
- source: replace_me_config | ||
target: epics/ioc/config | ||
|
||
configs: | ||
replace_me_config: | ||
file: ./config | ||
|
||
include: | ||
- path: | ||
../../include/networks.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# yaml-language-server: $schema=https://github.com/epics-containers/ioc-template-example/releases/download/3.5.1/ibek.ioc.schema.json | ||
|
||
# TODO replace above with the generic IOC schema this IOC is based on | ||
ioc_name: "{{ _global.get_env('IOC_NAME') }}" | ||
|
||
description: REPLACE WITH DESCRIPTION | ||
|
||
entities: | ||
- type: epics.EpicsEnvSet | ||
name: EPICS_TZ | ||
value: GMT0BST | ||
|
||
- type: devIocStats.iocAdminSoft | ||
IOC: "{{ ioc_name | upper }}" | ||
|
||
# - todo: Add more entities to make a meaningful IOC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters