File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 5
5
definition : " {{ lookup('template', 'crd.yaml.j2') }}"
6
6
wait : yes
7
7
8
- - name : Deploy Data Manager API RBAC
8
+ - name : Deploy Data Manager Material
9
9
kubernetes.core.k8s :
10
10
definition : " {{ lookup('template', '{{ item }}.yaml.j2') }}"
11
11
wait : yes
12
12
loop :
13
13
- rbac-data-manager
14
+ - configmap-data-manager
14
15
15
16
- name : Deploy objects to operator Namespace ({{ jo_namespace }})
16
17
kubernetes.core.k8s :
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ # A Data-Manager-compliant ConfigMap.
4
+ # This is deployed tot the DM namespace and provides configuration material.
5
+ # The configMap must have the same name as the application CRD,
6
+ # e.g. 'jupyternotebooks.squonk.it'.
7
+ #
8
+ # The 'data' section provides a 'dm-app.config' key
9
+ # with a value that's essentially a Python Configparser file using '='
10
+ # as key/value delimiter.
11
+
12
+ kind: ConfigMap
13
+ apiVersion: v1
14
+ metadata:
15
+ name: jupyternotebooks.squonk.it
16
+ namespace: {{ dt_namespace }}
17
+ data:
18
+ dm-app.config: |
19
+ [public image variants]
20
+ # A list of image variants that are public
21
+ # (i.e. do not need an ImagePullSecret).
22
+ # The key is the image (including its tag).
23
+ # The value is the image symbolic name.
24
+ jupyter/base-notebook:2022-09-12 = Base
25
+ jupyter/minimal-notebook:2022-09-12 = Minimal
26
+ jupyter/r-notebook:r-4.1.3 = r v4
27
+ jupyter/scipy-notebook:2022-09-12 = SciPy
28
+ jupyter/tensorflow-notebook:tensorflow-2.9.1 = Tensorflow 2.9
29
+ jupyter/datascience-notebook:2022-09-12 = DataScience
You can’t perform that action at this time.
0 commit comments