Skip to content

Commit

Permalink
Fix some parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelldls committed Jun 4, 2024
1 parent 3a70856 commit 1c01bd1
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions Schemas/ioc-instance.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@
"type": "string",
"description": "The name of the repository in which the IOC is grouped - same as beamline for beamlines"
},
"startCommand": {
"type": "string",
"description": "The command run as the entry point of the container.",
"default": "bash"
},
"hostNetwork": {
"type": "boolean",
"description": "Use host network for IOC - required for Channel Access to work outside of the cluster"
Expand All @@ -38,6 +33,16 @@
"description": "Root folder for ioc source/binaries inside generic IOC container",
"default": "/epics/ioc/config"
},
"startCommand": {
"type": "string",
"description": "The command run as the entry point of the container.",
"default": "bash"
},
"startArgs": {
"type": "string",
"description": "The arguments for the entry point of the container.",
"default": "/epics/ioc/start.sh"
},
"stop": {
"type": "string",
"description": "Script run before stopping the IOC",
Expand All @@ -62,10 +67,10 @@
"default": "false"
},
"runAsUser": {
"type": "string"
"type": "integer"
},
"runAsGroup": {
"type": "string"
"type": "integer"
},
"capabilities": {
"type": "object"
Expand Down

0 comments on commit 1c01bd1

Please sign in to comment.