forked from fission/environments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
skaffold.yaml
162 lines (161 loc) · 3.53 KB
/
skaffold.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
apiVersion: skaffold/v2beta24
kind: Config
deploy:
helm:
releases:
- name: fission
remoteChart: https://github.com/fission/fission-charts/releases/download/fission-all-v1.20.3/fission-all-v1.20.3.tgz
namespace: fission
setValues:
analytics: "false"
canaryDeployment.enabled: "false"
influxdb.enabled: "false"
nats.enabled: "false"
prometheus.enabled: "false"
routerServiceType: NodePort
wait: true
flags:
install:
- --create-namespace
- --timeout=3m
- --debug
- --dependency-update
upgrade:
- --timeout=3m
- --install
- --force
- --debug
profiles:
- name: dotnet
build:
artifacts:
- image: dotnet-env
context: dotnet/
docker:
dockerfile: Dockerfile
- name: dotnet20
build:
artifacts:
- image: dotnet20-env
context: dotnet20/
docker:
dockerfile: Dockerfile
- name: go
build:
artifacts:
- image: go-env
context: go/
docker:
dockerfile: Dockerfile-1.1x
buildArgs:
GO_VERSION: "1.22"
UBUNTU_VERSION: "22.04"
- image: go-builder
context: go/builder/
docker:
dockerfile: Dockerfile-1.1x
buildArgs:
GO_VERSION: "1.22"
- name: jvm
build:
artifacts:
- image: jvm-env
context: jvm/
docker:
dockerfile: Dockerfile
- image: jvm-builder
context: jvm/builder/
docker:
dockerfile: Dockerfile
- name: jvm-jersey
build:
artifacts:
- image: jvm-jersey-env
context: jvm-jersey/
docker:
dockerfile: Dockerfile
- name: nodejs
build:
artifacts:
- image: node-env
context: nodejs/
docker:
dockerfile: Dockerfile
buildArgs:
NODE_BASE_IMG: "20.16.0-alpine3.20"
- image: node-builder
context: nodejs/builder/
docker:
dockerfile: Dockerfile
buildArgs:
NODE_BASE_IMG: "20.16.0-alpine3.20"
- name: perl
build:
artifacts:
- image: perl-env
context: perl/
docker:
dockerfile: Dockerfile
- name: php7
build:
artifacts:
- image: php7-env
context: php7/
docker:
dockerfile: Dockerfile
- name: python
build:
artifacts:
- image: python-env
context: python/
docker:
dockerfile: Dockerfile
buildArgs:
PY_BASE_IMG: "3.11-alpine"
- image: python-builder
context: python/builder/
docker:
dockerfile: Dockerfile
buildArgs:
PY_BASE_IMG: "3.11-alpine"
- name: python-fastapi
build:
artifacts:
- image: python-fastapi-env
context: python-fastapi/
docker:
dockerfile: Dockerfile
- image: python-fastapi-builder
context: python-fastapi/builder/
docker:
dockerfile: Dockerfile
buildArgs:
PY_BASE_IMG: "3.11-alpine"
- name: ruby
build:
artifacts:
- image: ruby-env
context: ruby/
docker:
dockerfile: Dockerfile
- name: tensorflow-serving
build:
artifacts:
- image: tensorflow-serving-env
context: tensorflow-serving/
docker:
dockerfile: Dockerfile
- name: binary
build:
artifacts:
- image: binary-env
context: binary/
docker:
dockerfile: Dockerfile
buildArgs:
GO_BASE_IMAGE: "1.22-alpine"
ALPINE_VERSION: "3.20"
- image: binary-builder
context: binary/builder/
docker:
dockerfile: Dockerfile