-
Notifications
You must be signed in to change notification settings - Fork 704
/
Copy pathflyte_helm_generated.yaml
1890 lines (1887 loc) · 50.4 KB
/
flyte_helm_generated.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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
# Source: flyte-core/templates/admin/rbac.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: flyteadmin
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::<ACCOUNT_NUMBER>:role/iam-role-flyte
---
# Source: flyte-core/templates/datacatalog/rbac.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: datacatalog
namespace: flyte
labels:
app.kubernetes.io/name: datacatalog
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::<ACCOUNT_NUMBER>:role/iam-role-flyte
---
# Source: flyte-core/templates/flytescheduler/sa.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: flytescheduler
namespace: flyte
labels:
app.kubernetes.io/name: flytescheduler
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
---
# Source: flyte-core/templates/propeller/rbac.yaml
apiVersion: v1
kind: ServiceAccount
metadata:
name: flytepropeller
namespace: flyte
labels:
app.kubernetes.io/name: flytepropeller
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::<ACCOUNT_NUMBER>:role/iam-role-flyte
---
# Source: flyte-core/templates/propeller/webhook.yaml
# Create a Service Account for webhook
apiVersion: v1
kind: ServiceAccount
metadata:
name: flyte-pod-webhook
namespace: flyte
---
# Source: flyte-core/templates/admin/secret.yaml
apiVersion: v1
kind: Secret
metadata:
name: flyte-admin-secrets
namespace: flyte
type: Opaque
stringData:
---
# Source: flyte-core/templates/common/secret-auth.yaml
apiVersion: v1
kind: Secret
metadata:
name: flyte-secret-auth
namespace: flyte
type: Opaque
stringData:
client_secret: foobar
---
# Source: flyte-core/templates/common/secret.yaml
apiVersion: v1
kind: Secret
metadata:
name: db-pass
stringData:
pass.txt: '<DB_PASSWORD>'
type: Opaque
---
# Source: flyte-core/templates/propeller/webhook.yaml
# Create an empty secret that the first propeller pod will populate
apiVersion: v1
kind: Secret
metadata:
name: flyte-pod-webhook
namespace: flyte
type: Opaque
---
# Source: flyte-core/templates/admin/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: flyte-admin-clusters-config
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
clusters.yaml: |
clusters:
clusterConfigs: []
labelClusterMap: {}
---
# Source: flyte-core/templates/admin/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: flyte-admin-base-config
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
db.yaml: |
database:
dbname: flyteadmin
host: '<RDS_HOST>'
passwordPath: /etc/db/pass.txt
port: 5432
username: flyteadmin
domain.yaml: |
domains:
- id: development
name: development
- id: staging
name: staging
- id: production
name: production
server.yaml: |
auth:
appAuth:
thirdPartyConfig:
flyteClient:
clientId: flytectl
redirectUri: http://localhost:53593/callback
scopes:
- offline
- all
authorizedUris:
- https://localhost:30081
- http://flyteadmin:80
- http://flyteadmin.flyte.svc.cluster.local:80
rbac:
bypassMethodPatterns:
- /grpc.health.v1.Health/.*
- /flyteidl.service.AuthMetadataService/.*
enabled: false
policies:
- role: admin
rules:
- methodPattern: .*
name: Admin allow all
- role: flytesnacks-engineer
rules:
- domain: development
methodPattern: .*
name: Flytesnacks engineer dev write access
project: flytesnacks
- domain: production
methodPattern: List.*|Get.*
name: Flytesnacks engineer prod read access
project: flytesnacks
tokenScopeRoleResolver:
enabled: true
userAuth:
openId:
baseUrl: https://accounts.google.com
clientId: 657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com
scopes:
- profile
- openid
flyteadmin:
eventVersion: 2
metadataStoragePrefix:
- metadata
- admin
metricsScope: 'flyte:'
profilerPort: 10254
roleNameKey: iam.amazonaws.com/role
testing:
host: http://flyteadmin
server:
grpc:
port: 8089
httpPort: 8088
security:
allowCors: true
allowedHeaders:
- Content-Type
allowedOrigins:
- '*'
secure: false
useAuth: false
remoteData.yaml: |
remoteData:
region: us-east-1
scheme: local
signedUrls:
durationMinutes: 3
storage.yaml: |
storage:
type: s3
container: "<METADATA_BUCKET_NAME>"
connection:
auth-type: iam
region: <AWS_REGION>
enable-multicontainer: false
limits:
maxDownloadMBs: 10
cache:
max_size_mbs: 1024
target_gc_percent: 70
task_resource_defaults.yaml: |
task_resources:
defaults:
cpu: 1000m
memory: 1000Mi
storage: 1000Mi
limits:
cpu: 2
gpu: 1
memory: 1Gi
storage: 2000Mi
cluster_resources.yaml: |
cluster_resources:
customData:
- production:
- projectQuotaCpu:
value: "5"
- projectQuotaMemory:
value: 4000Mi
- defaultIamRole:
value: arn:aws:iam::<ACCOUNT_NUMBER>:role/flyte-user-role
- staging:
- projectQuotaCpu:
value: "2"
- projectQuotaMemory:
value: 3000Mi
- defaultIamRole:
value: arn:aws:iam::<ACCOUNT_NUMBER>:role/flyte-user-role
- development:
- projectQuotaCpu:
value: "4"
- projectQuotaMemory:
value: 3000Mi
- defaultIamRole:
value: arn:aws:iam::<ACCOUNT_NUMBER>:role/flyte-user-role
refreshInterval: 5m
standaloneDeployment: false
templatePath: /etc/flyte/clusterresource/templates
---
# Source: flyte-core/templates/clusterresourcesync/cluster_resource_configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: clusterresource-template
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
aa_namespace.yaml: |
apiVersion: v1
kind: Namespace
metadata:
name: {{ namespace }}
spec:
finalizers:
- kubernetes
aab_default_service_account.yaml: |
apiVersion: v1
kind: ServiceAccount
metadata:
name: default
namespace: {{ namespace }}
annotations:
eks.amazonaws.com/role-arn: {{ defaultIamRole }}
ab_project_resource_quota.yaml: |
apiVersion: v1
kind: ResourceQuota
metadata:
name: project-quota
namespace: {{ namespace }}
spec:
hard:
limits.cpu: {{ projectQuotaCpu }}
limits.memory: {{ projectQuotaMemory }}
---
# Source: flyte-core/templates/clusterresourcesync/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: flyte-clusterresourcesync-config
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
cluster_resources.yaml: |
cluster_resources:
customData:
- production:
- projectQuotaCpu:
value: "5"
- projectQuotaMemory:
value: 4000Mi
- defaultIamRole:
value: arn:aws:iam::<ACCOUNT_NUMBER>:role/flyte-user-role
- staging:
- projectQuotaCpu:
value: "2"
- projectQuotaMemory:
value: 3000Mi
- defaultIamRole:
value: arn:aws:iam::<ACCOUNT_NUMBER>:role/flyte-user-role
- development:
- projectQuotaCpu:
value: "4"
- projectQuotaMemory:
value: 3000Mi
- defaultIamRole:
value: arn:aws:iam::<ACCOUNT_NUMBER>:role/flyte-user-role
refreshInterval: 5m
standaloneDeployment: false
templatePath: /etc/flyte/clusterresource/templates
db.yaml: |
database:
dbname: flyteadmin
host: '<RDS_HOST>'
passwordPath: /etc/db/pass.txt
port: 5432
username: flyteadmin
domain.yaml: |
domains:
- id: development
name: development
- id: staging
name: staging
- id: production
name: production
clusters.yaml: |
clusters:
clusterConfigs: []
labelClusterMap: {}
---
# Source: flyte-core/templates/console/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: flyte-console-config
namespace: flyte
labels:
app.kubernetes.io/name: flyteconsole
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
BASE_URL: /console
CONFIG_DIR: /etc/flyte/config
---
# Source: flyte-core/templates/datacatalog/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: datacatalog-config
namespace: flyte
labels:
app.kubernetes.io/name: datacatalog
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
db.yaml: |
database:
dbname: flyteadmin
host: '<RDS_HOST>'
passwordPath: /etc/db/pass.txt
port: 5432
username: flyteadmin
server.yaml: |
application:
grpcPort: 8089
grpcServerReflection: true
httpPort: 8080
datacatalog:
heartbeat-grace-period-multiplier: 3
max-reservation-heartbeat: 30s
metrics-scope: datacatalog
profiler-port: 10254
storage-prefix: metadata/datacatalog
storage.yaml: |
storage:
type: s3
container: "<METADATA_BUCKET_NAME>"
connection:
auth-type: iam
region: <AWS_REGION>
enable-multicontainer: false
limits:
maxDownloadMBs: 10
cache:
max_size_mbs: 1024
target_gc_percent: 70
---
# Source: flyte-core/templates/flytescheduler/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: flyte-scheduler-config
namespace: flyte
labels:
app.kubernetes.io/name: flytescheduler
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
admin.yaml: |
admin:
clientId: 'flytepropeller'
clientSecretLocation: /etc/secrets/client_secret
endpoint: flyteadmin:81
insecure: true
event:
capacity: 1000
rate: 500
type: admin
db.yaml: |
database:
dbname: flyteadmin
host: '<RDS_HOST>'
passwordPath: /etc/db/pass.txt
port: 5432
username: flyteadmin
server.yaml: |
scheduler:
metricsScope: 'flyte:'
profilerPort: 10254
---
# Source: flyte-core/templates/propeller/configmap.yaml
apiVersion: v1
kind: ConfigMap
metadata:
name: flyte-propeller-config
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
data:
admin.yaml: |
admin:
clientId: 'flytepropeller'
clientSecretLocation: /etc/secrets/client_secret
endpoint: flyteadmin:81
insecure: true
event:
capacity: 1000
rate: 500
type: admin
catalog.yaml: |
catalog-cache:
endpoint: datacatalog:89
insecure: true
type: datacatalog
copilot.yaml: |
plugins:
k8s:
co-pilot:
image: cr.flyte.org/flyteorg/flytecopilot:v1.15.0
name: flyte-copilot-
start-timeout: 30s
core.yaml: |
manager:
pod-application: flytepropeller
pod-template-container-name: flytepropeller
pod-template-name: flytepropeller-template
propeller:
downstream-eval-duration: 30s
enable-admin-launcher: true
gc-interval: 12h
kube-client-config:
burst: 25
qps: 100
timeout: 30s
leader-election:
enabled: true
lease-duration: 15s
lock-config-map:
name: propeller-leader
namespace: flyte
renew-deadline: 10s
retry-period: 2s
limit-namespace: all
literal-offloading-config:
enabled: false
max-workflow-retries: 50
metadata-prefix: metadata/propeller
metrics-prefix: flyte
prof-port: 10254
queue:
batch-size: -1
batching-interval: 2s
queue:
base-delay: 5s
capacity: 1000
max-delay: 120s
rate: 100
type: maxof
sub-queue:
capacity: 1000
rate: 100
type: bucket
type: batch
rawoutput-prefix: s3://<RAW_DATA_BUCKET_NAME>/
workers: 40
workflow-reeval-duration: 30s
webhook:
certDir: /etc/webhook/certs
serviceName: flyte-pod-webhook
enabled_plugins.yaml: |
tasks:
task-plugins:
default-for-task-types:
container: container
container_array: k8s-array
sidecar: sidecar
enabled-plugins:
- container
- sidecar
- k8s-array
- agent-service
- echo
k8s.yaml: |
plugins:
k8s:
default-cpus: 100m
default-env-vars: []
default-memory: 100Mi
resource_manager.yaml: |
propeller:
resourcemanager:
type: noop
storage.yaml: |
storage:
type: s3
container: "<METADATA_BUCKET_NAME>"
connection:
auth-type: iam
region: <AWS_REGION>
enable-multicontainer: false
limits:
maxDownloadMBs: 10
cache:
max_size_mbs: 1024
target_gc_percent: 70
task_logs.yaml: |
plugins:
logs:
cloudwatch-enabled: true
cloudwatch-log-group: '<LOG_GROUP_NAME>'
cloudwatch-region: '<AWS_REGION>'
kubernetes-enabled: false
---
# Source: flyte-core/templates/propeller/crds/flyteworkflow.yaml
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: flyteworkflows.flyte.lyft.com
spec:
group: flyte.lyft.com
names:
kind: FlyteWorkflow
plural: flyteworkflows
shortNames:
- fly
singular: flyteworkflow
scope: Namespaced
versions:
- name: v1alpha1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
properties:
---
# Source: flyte-core/templates/admin/rbac.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: flyte-flyteadmin
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
rules:
- apiGroups:
- ""
- flyte.lyft.com
- rbac.authorization.k8s.io
resources:
- configmaps
- flyteworkflows
- namespaces
- pods
- resourcequotas
- roles
- rolebindings
- secrets
- services
- serviceaccounts
- spark-role
- limitranges
verbs:
- '*'
---
# Source: flyte-core/templates/propeller/rbac.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: flyte-flytepropeller
labels:
app.kubernetes.io/name: flytepropeller
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
rules:
# Allow RO access to PODS
- apiGroups:
- ""
resources:
- pods
verbs:
- get
- list
- watch
# Allow Event recording access
- apiGroups:
- ""
resources:
- events
verbs:
- create
- update
- delete
- patch
# Allow Access All plugin objects
- apiGroups:
- '*'
resources:
- '*'
verbs:
- get
- list
- watch
- create
- update
- delete
- patch
# Allow Access to CRD
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- get
- list
- watch
- create
- delete
- update
# Allow Access to all resources under flyte.lyft.com
- apiGroups:
- flyte.lyft.com
resources:
- flyteworkflows
- flyteworkflows/finalizers
verbs:
- get
- list
- watch
- create
- update
- delete
- patch
- post
- deletecollection
---
# Source: flyte-core/templates/propeller/webhook.yaml
# Create a ClusterRole for the webhook
# https://kubernetes.io/docs/admin/authorization/rbac/
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: flyte-flyte-pod-webhook
namespace: flyte
rules:
- apiGroups:
- "*"
resources:
- mutatingwebhookconfigurations
- secrets
- pods
- replicasets/finalizers
verbs:
- get
- create
- update
- patch
---
# Source: flyte-core/templates/admin/rbac.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: flyte-flyteadmin-binding
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: flyte-flyteadmin
subjects:
- kind: ServiceAccount
name: flyteadmin
namespace: flyte
---
# Source: flyte-core/templates/propeller/rbac.yaml
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: flyte-flytepropeller
labels:
app.kubernetes.io/name: flytepropeller
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: flyte-flytepropeller
subjects:
- kind: ServiceAccount
name: flytepropeller
namespace: flyte
---
# Source: flyte-core/templates/propeller/webhook.yaml
# Create a binding from Role -> ServiceAccount
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: flyte-flyte-pod-webhook
namespace: flyte
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: flyte-flyte-pod-webhook
subjects:
- kind: ServiceAccount
name: flyte-pod-webhook
namespace: flyte
---
# Source: flyte-core/templates/admin/service.yaml
apiVersion: v1
kind: Service
metadata:
name: flyteadmin
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
annotations:
projectcontour.io/upstream-protocol.h2c: grpc
spec:
type: ClusterIP
ports:
- name: http
port: 80
protocol: TCP
targetPort: 8088
- name: grpc
port: 81
protocol: TCP
# intentionally set to TCP instead of grpc
targetPort: 8089
- name: redoc
protocol: TCP
port: 87
targetPort: 8087
- name: http-metrics
protocol: TCP
port: 10254
selector:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
---
# Source: flyte-core/templates/console/service.yaml
apiVersion: v1
kind: Service
metadata:
name: flyteconsole
namespace: flyte
labels:
app.kubernetes.io/name: flyteconsole
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
spec:
type: ClusterIP
ports:
- name: http
port: 80
protocol: TCP
targetPort: 8080
selector:
app.kubernetes.io/name: flyteconsole
app.kubernetes.io/instance: flyte
---
# Source: flyte-core/templates/datacatalog/service.yaml
apiVersion: v1
kind: Service
metadata:
name: datacatalog
namespace: flyte
labels:
app.kubernetes.io/name: datacatalog
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
annotations:
projectcontour.io/upstream-protocol.h2c: grpc
spec:
type: NodePort
ports:
- name: http
port: 88
protocol: TCP
targetPort: 8088
- name: grpc
port: 89
protocol: TCP
targetPort: 8089
selector:
app.kubernetes.io/name: datacatalog
app.kubernetes.io/instance: flyte
---
# Source: flyte-core/templates/propeller/webhook.yaml
# Service
apiVersion: v1
kind: Service
metadata:
name: flyte-pod-webhook
namespace: flyte
annotations:
projectcontour.io/upstream-protocol.h2c: grpc
spec:
selector:
app: flyte-pod-webhook
ports:
- name: https
protocol: TCP
port: 443
targetPort: 9443
---
# Source: flyte-core/templates/admin/deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: flyteadmin
namespace: flyte
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
spec:
replicas: 2
selector:
matchLabels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
template:
metadata:
annotations:
configChecksum: "6dfd34f2ffa25346bfecaa5de1366a20fad2571e1fe7787e302c69a1a627e8c"
labels:
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/instance: flyte
helm.sh/chart: flyte-core-v0.1.10
app.kubernetes.io/managed-by: Helm
spec:
securityContext:
fsGroup: 65534
fsGroupChangePolicy: Always
runAsNonRoot: true
runAsUser: 1001
seLinuxOptions:
type: spc_t
initContainers:
- command:
- flyteadmin
- --config
- /etc/flyte/config/*.yaml
- migrate
- run
image: "cr.flyte.org/flyteorg/flyteadmin:v1.15.0"
imagePullPolicy: "IfNotPresent"
name: run-migrations
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
volumeMounts:
- mountPath: /etc/db
name: db-pass
- mountPath: /etc/flyte/config
name: base-config-volume
- command:
- flyteadmin
- --config
- /etc/flyte/config/*.yaml
- migrate
- seed-projects
- flytesnacks
- flytetester
- flyteexamples
image: "cr.flyte.org/flyteorg/flyteadmin:v1.15.0"
imagePullPolicy: "IfNotPresent"
name: seed-projects
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
volumeMounts:
- mountPath: /etc/db
name: db-pass
- mountPath: /etc/flyte/config
name: base-config-volume
- command:
- flyteadmin
- --config
- /etc/flyte/config/*.yaml
- clusterresource
- sync
image: "cr.flyte.org/flyteorg/flyteadmin:v1.15.0"
imagePullPolicy: "IfNotPresent"
name: sync-cluster-resources
securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
volumeMounts:
- mountPath: /etc/db
name: db-pass
- mountPath: /etc/flyte/clusterresource/templates
name: resource-templates
- mountPath: /etc/flyte/config
name: clusters-config-volume
- mountPath: /etc/secrets/
name: admin-secrets
- name: generate-secrets
image: "cr.flyte.org/flyteorg/flyteadmin:v1.15.0"
imagePullPolicy: "IfNotPresent"
command: ["/bin/sh", "-c"]
args:
[
"flyteadmin --config=/etc/flyte/config/*.yaml secrets init --localPath /etc/scratch/secrets && flyteadmin --config=/etc/flyte/config/*.yaml secrets create --name flyte-admin-secrets --fromPath /etc/scratch/secrets",
]
securityContext:
allowPrivilegeEscalation: false
capabilities: