adaptdl-tensorboard-deployment-template.json 1.63 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
    "apiVersion": "apps/v1",
    "kind": "Deployment",
    "metadata": {
        "name": "<name>",
        "labels": {
            "expId": "<exp_id>"
        }
    },
    "spec": {
        "selector": {
           "matchLabels": {
              "app": "<name>"
           }
        },
        "replicas": 1,
        "template": {
            "metadata": {
                "labels": {
                    "app": "<name>"
                }
            },
            "spec": {
                "containers": [
                    {
                        "command": ["tensorboard"],
                        "args": ["--host=0.0.0.0", "--logdir=/adaptdl/tensorboard", "--port=6006"],
                        "image": "tensorflow/tensorflow",
                        "name": "tensorboard",
                        "ports": [
                            {
                                "containerPort": 6006
                            }
                        ],
                        "volumeMounts": [
                            {
                                "mountPath": "/adaptdl/tensorboard",
                                "name": "adaptdl-tensorboard-pvc",
                                "subPath": "adaptdl/tensorboard"
                            }
                        ]
                    }
                ],
                "volumes": [
                    {
                        "name": "adaptdl-tensorboard-pvc",
                        "persistentVolumeClaim": {
                            "claimName": "<adaptdl_tensorflow_pvc_name>"
                        }
                    }
                ]
            }
        }
    }
}