|
| 1 | +# Copyright 2022 MONAI Consortium |
| 2 | +# |
| 3 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | +# you may not use this file except in compliance with the License. |
| 5 | +# You may obtain a copy of the License at |
| 6 | +# |
| 7 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | +# |
| 9 | +# Unless required by applicable law or agreed to in writing, software |
| 10 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | +# See the License for the specific language governing permissions and |
| 13 | +# limitations under the License. |
| 14 | + |
| 15 | +replicaCount: 1 |
| 16 | + |
| 17 | +image: |
| 18 | + repository: registry.gitlab.com/answerdigital/londonai/aide/workflow-manager-images/task-manager |
| 19 | + pullPolicy: IfNotPresent |
| 20 | + tag: 2022-09-05-01 |
| 21 | + |
| 22 | +imagePullSecrets: |
| 23 | + - name: gitlab-image-pull |
| 24 | + |
| 25 | +enviromentVariables: |
| 26 | + WorkflowManager__storage__settings__endpoint: "minio.monai:9000" |
| 27 | + WorkflowManager__storage__settings__accessKey: "rootminio" |
| 28 | + WorkflowManager__storage__settings__accessToken: "rootminio" |
| 29 | + WorkflowManager__storage__settings__executableLocation: "mc" |
| 30 | + WorkflowManager__messaging__publisherSettings__endpoint: "rabbitmq.monai" |
| 31 | + WorkflowManager__messaging__subscriberSettings__endpoint: "rabbitmq.monai" |
| 32 | + WorkloadManagerDatabase__ConnectionString: "mongodb://root:[email protected]:27017" |
| 33 | + |
| 34 | +enviromentVariablesFromSecrets: |
| 35 | + secrets: |
| 36 | + - name: WorkflowManager__messaging__subscriberSettings__username |
| 37 | + secretName: rabbit-secret-master |
| 38 | + secretKey: username |
| 39 | + - name: WorkflowManager__messaging__subscriberSettings__password |
| 40 | + secretName: rabbit-secret-master |
| 41 | + secretKey: password |
| 42 | + - name: WorkflowManager__messaging__publisherSettings__username |
| 43 | + secretName: rabbit-secret-master |
| 44 | + secretKey: username |
| 45 | + - name: WorkflowManager__messaging__publisherSettings__password |
| 46 | + secretName: rabbit-secret-master |
| 47 | + secretKey: password |
| 48 | + |
| 49 | +service: |
| 50 | + type: ClusterIP |
| 51 | + port: 5000 |
| 52 | + |
| 53 | +serviceAccount: |
| 54 | + create: true |
| 55 | + name: mtm |
| 56 | + namespace: monai |
| 57 | + clusterrole: |
| 58 | + name: clusterrole-taskmanager-argo-secret-master |
| 59 | + rules: |
| 60 | + apiGroups: [""] |
| 61 | + resources: ["secrets"] |
| 62 | + verbs: ["get", "list", "watch", "create", "update", "patch", "delete"] |
| 63 | + |
| 64 | + |
| 65 | + |
0 commit comments