-
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
1 parent
8659ffe
commit 7c30b2b
Showing
9 changed files
with
39 additions
and
119 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
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,20 +1,4 @@ | ||
epics-opis: | ||
# the beamline name - only set for beamlines | ||
beamline: bl45p | ||
# the location where the IOCs will run - same as beamline for beamlines | ||
ioc_group: bl45p | ||
# the name of the repository in which the IOC is grouped | ||
location: bl45p | ||
|
||
# useAffinity - only run on nodes with label beamline:<beamline-name> | ||
# or location:<location-name> | ||
# Comment out useAffiniity for dedicated cluster, set to true for shared cluster | ||
|
||
useAffinity: true | ||
|
||
# extra toleration for the shared cluster training rigs | ||
tolerations: | ||
- key: "nodetype" | ||
operator: "Equal" | ||
value: "test-rig" | ||
effect: "NoSchedule" | ||
# Short name for this collection of services | ||
# ioc_group: | ||
# location where these IOCs and services will run | ||
# location: |
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,8 +1,4 @@ | ||
epics-pvcs: | ||
|
||
# the beamline name - only set for beamlines | ||
beamline: bl45p | ||
# the location where the IOCs will run - same as beamline for beamlines | ||
ioc_group: bl45p | ||
# the name of the repository in which the IOC is grouped | ||
location: bl45p | ||
# Short name for this collection of services | ||
# ioc_group: | ||
# location where these IOCs and services will run | ||
# location: |
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,25 +1,40 @@ | ||
# shared beamline values for all services | ||
|
||
global: | ||
beamline: bl45p | ||
enabled: true | ||
location: bl45p | ||
ioc_group: p45 | ||
location: bl45p | ||
enabled: true | ||
|
||
ioc-instance: | ||
# useHostNetwork - use host network for IOC - required for Channel Access | ||
# to work outside of the cluster | ||
hostNetwork: true | ||
|
||
# affinity and tolerations to get the right nodes on pollux | ||
securityContext: | ||
runAsUser: 37988 | ||
runAsGroup: 37988 | ||
|
||
dataVolume: | ||
pvc: false | ||
hostPath: /dls/p45/data | ||
|
||
useAffinity: true | ||
affinity: | ||
nodeAffinity: | ||
requiredDuringSchedulingIgnoredDuringExecution: | ||
nodeSelectorTerms: | ||
- matchExpressions: | ||
- key: beamline | ||
operator: In | ||
values: | ||
- bl45p | ||
|
||
# extra toleration for bl45p's nodetype taint | ||
tolerations: | ||
- key: "nodetype" | ||
operator: "Equal" | ||
value: "test-rig" | ||
effect: "NoSchedule" | ||
- key: beamline | ||
operator: Equal | ||
value: bl45p | ||
effect: NoSchedule | ||
- key: location | ||
operator: Equal | ||
value: bl45p | ||
effect: NoSchedule | ||
- key: nodetype | ||
operator: Equal | ||
value: training-rig | ||
effect: NoSchedule |