-
Notifications
You must be signed in to change notification settings - Fork 4
/
s2i-openvino-notebook-new.yaml
62 lines (62 loc) · 1.66 KB
/
s2i-openvino-notebook-new.yaml
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
56
57
58
59
60
61
62
---
apiVersion: v1
kind: ImageStream
metadata:
name: s2i-openvino-notebook
labels:
application: s2i-openvino-notebook
opendatahub.io/notebook-image: "true"
annotations:
opendatahub.io/notebook-image-url: "quay.io/modh/s2i-openvino-notebook"
opendatahub.io/notebook-image-name: "Notebook Image with OpenVINO components"
opendatahub.io/notebook-image-desc: "Jupyter notebook image with minimal dependency set to start experimenting with OpenVINO in a Jupyter environment."
---
kind: BuildConfig
apiVersion: build.openshift.io/v1
metadata:
labels:
build: s2i-openvino-notebook
name: s2i-openvino-notebook
spec:
output:
to:
kind: ImageStreamTag
name: s2i-openvino-notebook:local-build
source:
git:
uri: https://github.com/mmgaggle/s2i-openvino-notebook
#contextDir: overlays/python36
type: Git
strategy:
sourceStrategy:
forcePull: true
from:
kind: DockerImage
name: quay.io/thoth-station/s2i-thoth-ubi8-py36:v0.15.0
paths:
- destinationDir: .
sourcePath: overlays/python36/Dockerfile
- destinationDir: .
sourcePath: "overlays/python36/Pipfile.lock"
env:
- name: "ENABLE_PIPENV"
value: "1"
- name: "THOTH_ADVISE"
value: "0"
- name: "THOTH_DRY_RUN"
value: "1"
- name: "THAMOS_CONFIG_EXPAND_ENV"
value: "1"
- name: "THAMOS_FORCE"
value: "0"
- name: "THAMOS_VERBOSE"
value: "1"
- name: "THAMOS_DEBUG"
value: "1"
- name: "THOTH_FROM_MASTER"
value: "0"
- name: "THOTH_DEV"
value: "0"
type: Source
triggers:
- type: ConfigChange