File tree Expand file tree Collapse file tree 11 files changed +126
-18
lines changed
component-mlmd/deployments
metadata-store-mysql/deployments
metadata-store-postgresql/deployments
object-store-minio/deployments Expand file tree Collapse file tree 11 files changed +126
-18
lines changed Original file line number Diff line number Diff line change 31
31
image : persistenceagent
32
32
imagePullPolicy : IfNotPresent
33
33
name : ml-pipeline-persistenceagent
34
+ livenessProbe :
35
+ exec :
36
+ command :
37
+ - pidof
38
+ - persistence_agent
39
+ initialDelaySeconds : 30
40
+ periodSeconds : 5
41
+ timeoutSeconds : 2
42
+ readinessProbe :
43
+ exec :
44
+ command :
45
+ - pidof
46
+ - persistence_agent
47
+ initialDelaySeconds : 3
48
+ periodSeconds : 5
49
+ timeoutSeconds : 2
34
50
resources :
35
51
requests :
36
52
cpu : 120m
Original file line number Diff line number Diff line change 32
32
image : scheduledworkflow
33
33
imagePullPolicy : IfNotPresent
34
34
name : ml-pipeline-scheduledworkflow
35
+ livenessProbe :
36
+ exec :
37
+ command :
38
+ - pidof
39
+ - controller
40
+ initialDelaySeconds : 30
41
+ periodSeconds : 5
42
+ timeoutSeconds : 2
43
+ readinessProbe :
44
+ exec :
45
+ command :
46
+ - pidof
47
+ - controller
48
+ initialDelaySeconds : 3
49
+ periodSeconds : 5
50
+ timeoutSeconds : 2
35
51
serviceAccountName : ml-pipeline-scheduledworkflow
Original file line number Diff line number Diff line change 33
33
image : viewer-crd-controller
34
34
imagePullPolicy : Always
35
35
name : ml-pipeline-viewer-crd
36
+ livenessProbe :
37
+ exec :
38
+ command :
39
+ - pidof
40
+ - controller
41
+ initialDelaySeconds : 30
42
+ periodSeconds : 5
43
+ timeoutSeconds : 2
44
+ readinessProbe :
45
+ exec :
46
+ command :
47
+ - pidof
48
+ - controller
49
+ initialDelaySeconds : 3
50
+ periodSeconds : 5
51
+ timeoutSeconds : 2
36
52
serviceAccountName : ml-pipeline-viewer-crd-service-account
Original file line number Diff line number Diff line change 21
21
containers :
22
22
- image : visualization-server
23
23
imagePullPolicy : IfNotPresent
24
+ name : ml-pipeline-visualizationserver
25
+ ports :
26
+ - containerPort : 8888
27
+ name : http
24
28
livenessProbe :
25
29
exec :
26
30
command :
30
34
- -O
31
35
- ' -'
32
36
- http://localhost:8888/
33
- initialDelaySeconds : 3
37
+ initialDelaySeconds : 30
34
38
periodSeconds : 5
35
39
timeoutSeconds : 2
36
- name : ml-pipeline-visualizationserver
37
- ports :
38
- - containerPort : 8888
39
- name : http
40
40
readinessProbe :
41
41
exec :
42
42
command :
Original file line number Diff line number Diff line change @@ -121,6 +121,12 @@ spec:
121
121
name : $(pipeline_install_configuration)
122
122
image : api-server
123
123
imagePullPolicy : Always
124
+ name : ml-pipeline-api-server
125
+ ports :
126
+ - containerPort : 8888
127
+ name : http
128
+ - containerPort : 8887
129
+ name : grpc
124
130
livenessProbe :
125
131
exec :
126
132
command :
@@ -133,12 +139,6 @@ spec:
133
139
initialDelaySeconds : 3
134
140
periodSeconds : 5
135
141
timeoutSeconds : 2
136
- name : ml-pipeline-api-server
137
- ports :
138
- - containerPort : 8888
139
- name : http
140
- - containerPort : 8887
141
- name : grpc
142
142
readinessProbe :
143
143
exec :
144
144
command :
Original file line number Diff line number Diff line change 27
27
name : md-envoy
28
28
- containerPort : 9901
29
29
name : envoy-admin
30
+ livenessProbe :
31
+ initialDelaySeconds : 30
32
+ periodSeconds : 5
33
+ tcpSocket :
34
+ port : md-envoy
35
+ timeoutSeconds : 2
36
+ readinessProbe :
37
+ initialDelaySeconds : 3
38
+ periodSeconds : 5
39
+ tcpSocket :
40
+ port : md-envoy
41
+ timeoutSeconds : 2
Original file line number Diff line number Diff line change @@ -55,16 +55,16 @@ spec:
55
55
key : dbPort
56
56
name : $(pipeline_install_configuration)
57
57
image : metadata-grpc
58
+ name : container
59
+ ports :
60
+ - containerPort : 8080
61
+ name : grpc-api
58
62
livenessProbe :
59
- initialDelaySeconds : 3
63
+ initialDelaySeconds : 30
60
64
periodSeconds : 5
61
65
tcpSocket :
62
66
port : grpc-api
63
67
timeoutSeconds : 2
64
- name : container
65
- ports :
66
- - containerPort : 8080
67
- name : grpc-api
68
68
readinessProbe :
69
69
initialDelaySeconds : 3
70
70
periodSeconds : 5
Original file line number Diff line number Diff line change 32
32
name : $(ml_pipelines_configuration)
33
33
image : metadata-writer
34
34
name : main
35
+ livenessProbe :
36
+ exec :
37
+ command :
38
+ - pidof
39
+ - python3
40
+ initialDelaySeconds : 30
41
+ periodSeconds : 5
42
+ timeoutSeconds : 2
43
+ readinessProbe :
44
+ exec :
45
+ command :
46
+ - pidof
47
+ - python3
48
+ initialDelaySeconds : 3
49
+ periodSeconds : 5
50
+ timeoutSeconds : 2
35
51
serviceAccountName : kubeflow-pipelines-metadata-writer
Original file line number Diff line number Diff line change 31
31
ports :
32
32
- containerPort : 3306
33
33
name : mysql
34
+ livenessProbe :
35
+ failureThreshold : 3
36
+ initialDelaySeconds : 30
37
+ periodSeconds : 10
38
+ successThreshold : 1
39
+ tcpSocket :
40
+ port : 3306
41
+ timeoutSeconds : 1
42
+ readinessProbe :
43
+ failureThreshold : 3
44
+ initialDelaySeconds : 5
45
+ periodSeconds : 10
46
+ successThreshold : 1
47
+ tcpSocket :
48
+ port : 3306
49
+ timeoutSeconds : 1
34
50
resources :
35
51
requests :
36
52
cpu : 100m
Original file line number Diff line number Diff line change @@ -35,15 +35,15 @@ spec:
35
35
- name : POSTGRESQL_DATABASE
36
36
value : kfp-tekton
37
37
imagePullPolicy : Always
38
+ ports :
39
+ - containerPort : 5432
38
40
livenessProbe :
39
41
exec :
40
42
command :
41
43
- /usr/libexec/check-container
42
44
- --live
43
45
initialDelaySeconds : 120
44
46
timeoutSeconds : 10
45
- ports :
46
- - containerPort : 5432
47
47
readinessProbe :
48
48
exec :
49
49
command :
You can’t perform that action at this time.
0 commit comments