-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevspace.yaml
More file actions
executable file
·60 lines (60 loc) · 1.29 KB
/
Copy pathdevspace.yaml
File metadata and controls
executable file
·60 lines (60 loc) · 1.29 KB
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
version: v1beta9
images:
app:
image: default-route-openshift-image-registry.apps.cluster-cc14.cc14.sandbox1490.opentlc.com/devspace/quickstartpython
tags:
- latest
preferSyncOverRebuild: true
injectRestartHelper: true
appendDockerfileInstructions:
- USER root
build:
kaniko:
insecure: true
pullSecret: devspace-auth-default-route-openshift-image-registry-921df43ffc
deployments:
- name: quickstart-python
helm:
componentChart: true
values:
containers:
- image: image-registry.openshift-image-registry.svc:5000/devspace/quickstartpython
service:
ports:
- port: 8080
dev:
ports:
- imageName: app
forward:
- port: 8080
open:
- url: http://localhost:8080
sync:
- imageName: app
excludePaths:
- .git/
uploadExcludePaths:
- Dockerfile
- devspace.yaml
onUpload:
restartContainer: true
profiles:
- name: production
description: ""
patches:
- op: remove
path: images.app.appendDockerfileInstructions
- op: remove
path: images.app.injectRestartHelper
- name: interactive
description: ""
patches:
- op: add
path: dev.interactive
value:
defaultEnabled: true
- op: add
path: images.app.entrypoint
value:
- sleep
- "9999999999"