mirror of
https://github.com/autistic-symposium/ml-quantum-tensorflow-py.git
synced 2025-04-27 19:26:09 -04:00
32 lines
629 B
YAML
32 lines
629 B
YAML
apiVersion: apps/v1beta1
|
|
kind: Deployment
|
|
metadata:
|
|
labels:
|
|
app: tensorboard
|
|
name: tensorboard
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: tensorboard
|
|
spec:
|
|
containers:
|
|
- args:
|
|
- --logdir=logs
|
|
- --port=6006
|
|
command:
|
|
- /usr/local/bin/tensorboard
|
|
image: tensorflow/tensorflow:1.8.0
|
|
imagePullPolicy: IfNotPresent
|
|
name: tensorboard
|
|
ports:
|
|
- containerPort: 6006
|
|
resources:
|
|
limits:
|
|
cpu: "4"
|
|
memory: 4Gi
|
|
requests:
|
|
cpu: "1"
|
|
memory: 1Gi
|