-
Notifications
You must be signed in to change notification settings - Fork 680
/
Copy pathflyte_generated.yaml
1160 lines (1156 loc) · 25.8 KB
/
flyte_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
apiVersion: v1
kind: Namespace
metadata:
name: flyte
---
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
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: datacatalog
namespace: flyte
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: flyte-pod-webhook
namespace: flyte
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: flyteadmin
namespace: flyte
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: flytepropeller
namespace: flyte
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: flyte-pod-webhook
namespace: flyte
rules:
- apiGroups:
- '*'
resources:
- mutatingwebhookconfigurations
- secrets
- pods
- replicasets/finalizers
verbs:
- get
- create
- update
- patch
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: flyteadmin
namespace: flyte
rules:
- apiGroups:
- ""
- flyte.lyft.com
- rbac.authorization.k8s.io
resources:
- configmaps
- flyteworkflows
- namespaces
- pods
- resourcequotas
- roles
- rolebindings
- secrets
- services
- serviceaccounts
- spark-role
verbs:
- '*'
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: flytepropeller
rules:
- apiGroups:
- ""
resources:
- pods
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- events
verbs:
- create
- update
- delete
- patch
- apiGroups:
- '*'
resources:
- '*'
verbs:
- get
- list
- watch
- create
- update
- delete
- patch
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- get
- list
- watch
- create
- delete
- update
- apiGroups:
- flyte.lyft.com
resources:
- flyteworkflows
- flyteworkflows/finalizers
verbs:
- get
- list
- watch
- create
- update
- delete
- patch
- post
- deletecollection
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: flyte-pod-webhook
namespace: flyte
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: flyte-pod-webhook
subjects:
- kind: ServiceAccount
name: flyte-pod-webhook
namespace: flyte
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: flyteadmin-binding
namespace: flyte
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: flyteadmin
subjects:
- kind: ServiceAccount
name: flyteadmin
namespace: flyte
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: flytepropeller
namespace: flyte
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: flytepropeller
subjects:
- kind: ServiceAccount
name: flytepropeller
namespace: flyte
---
apiVersion: v1
data:
aa_namespace.yaml: |
apiVersion: v1
kind: Namespace
metadata:
name: {{ namespace }}
spec:
finalizers:
- kubernetes
ab_project-resource-quota.yaml: "apiVersion: v1\nkind: ResourceQuota\nmetadata:\n name: project-quota\n namespace: {{ namespace }} \nspec:\n hard:\n limits.cpu: {{ projectQuotaCpu }} \n limits.memory: {{ projectQuotaMemory }}\n\n"
kind: ConfigMap
metadata:
name: clusterresource-template-dk5mbchdmt
namespace: flyte
---
apiVersion: v1
data:
db.yaml: |
database:
port: 5432
username: postgres
host: postgres
dbname: datacatalog
options: sslmode=disable
logger.yaml: |
logger:
show-source: true
level: 2
server.yaml: |
datacatalog:
storage-prefix: metadata/datacatalog
metrics-scope: "datacatalog"
profiler-port: 10254
application:
grpcPort: 8089
storage.yaml: |+
storage:
type: minio
connection:
access-key: minio
auth-type: accesskey
secret-key: miniostorage
disable-ssl: true
endpoint: http://minio.flyte.svc.cluster.local:9000
region: us-east-1
container: "my-s3-bucket"
kind: ConfigMap
metadata:
name: datacatalog-config-64k8dg9gck
namespace: flyte
---
apiVersion: v1
data:
cluster_resources.yaml: |
cluster_resources:
templatePath: "/etc/flyte/clusterresource/templates"
customData:
- production:
- projectQuotaCpu:
value: "5"
- projectQuotaMemory:
value: "4000Mi"
- staging:
- projectQuotaCpu:
value: "2"
- projectQuotaMemory:
value: "3000Mi"
- development:
- projectQuotaCpu:
value: "4"
- projectQuotaMemory:
value: "3000Mi"
refreshInterval: 1m
db.yaml: |
database:
port: 5432
username: postgres
host: postgres
dbname: postgres
options: sslmode=disable
domain.yaml: |
domains:
- id: development
name: development
- id: staging
name: staging
- id: production
name: production
logger.yaml: |
logger:
show-source: true
level: 2
server.yaml: |
server:
httpPort: 8088
grpc:
port: 8089
security:
# Controls whether to serve requests over SSL/TLS.
secure: false
# Controls whether to enforce authentication. Follow the guide in https://docs.flyte.org/ on how to setup authentication.
useAuth: false
allowCors: true
allowedOrigins:
# Accepting all domains for Sandbox installation
- "*"
allowedHeaders:
- "Content-Type"
- "flyte-authorization"
auth:
authorizedUris:
# This should point at your public http Uri.
- https://localhost:30081
# This will be used by internal services in the same namespace as flyteadmin
- http://flyteadmin:80
# This will be used by internal services in the same cluster but different namespaces
- http://flyteadmin.flyte.svc.cluster.local:80
# Controls app authentication config
appAuth:
thirdPartyConfig:
flyteClient:
clientId: flytectl
redirectUri: https://localhost:53593/callback
scopes:
- offline
- all
# Controls user authentication
userAuth:
openId:
baseUrl: https://accounts.google.com
scopes:
- profile
- openid
clientId: 657465813211-6eog7ek7li5k7i7fvgv2921075063hpe.apps.googleusercontent.com
flyteadmin:
roleNameKey: "iam.amazonaws.com/role"
storage.yaml: |+
storage:
type: minio
connection:
access-key: minio
auth-type: accesskey
secret-key: miniostorage
disable-ssl: true
endpoint: http://minio.flyte.svc.cluster.local:9000
region: us-east-1
container: "my-s3-bucket"
task_resource_defaults.yaml: |
task_resources:
defaults:
cpu: 100m
memory: 100Mi
storage: 5Mi
limits:
cpu: 2
memory: 1Gi
storage: 20Mi
gpu: 1
kind: ConfigMap
metadata:
name: flyte-admin-config-hc64g2ct6h
namespace: flyte
---
apiVersion: v1
data:
admin.yaml: |
event:
type: admin
rate: 500
capacity: 1000
admin:
endpoint: flyteadmin:81
insecure: true
catalog.yaml: |
catalog-cache:
endpoint: datacatalog:89
type: datacatalog
insecure: true
copilot.yaml: |
plugins:
k8s:
co-pilot:
name: "flyte-copilot-"
image: "cr.flyte.org/flyteorg/flytecopilot:v0.0.15"
start-timeout: "30s"
core.yaml: |
propeller:
rawoutput-prefix: s3://my-s3-bucket/
metadata-prefix: metadata/propeller
workers: 4
max-workflow-retries: 30
workflow-reeval-duration: 30s
downstream-eval-duration: 30s
limit-namespace: "all"
prof-port: 10254
metrics-prefix: flyte
enable-admin-launcher: true
leader-election:
lock-config-map:
name: propeller-leader
namespace: flyte
enabled: true
lease-duration: 15s
renew-deadline: 10s
retry-period: 2s
queue:
type: batch
batching-interval: 2s
batch-size: -1
queue:
type: maxof
rate: 100
capacity: 1000
base-delay: 5s
max-delay: 120s
sub-queue:
type: bucket
rate: 10
capacity: 100
webhook:
certDir: /etc/webhook/certs
serviceName: flyte-pod-webhook
enabled_plugins.yaml: |
tasks:
task-plugins:
enabled-plugins:
- container
- sidecar
- k8s-array
- agent-service
- echo
default-for-task-types:
container: container
sidecar: sidecar
container_array: k8s-array
k8s.yaml: |
plugins:
k8s:
default-env-vars:
- FLYTE_AWS_ENDPOINT: "http://minio.flyte:9000"
- FLYTE_AWS_ACCESS_KEY_ID: minio
- FLYTE_AWS_SECRET_ACCESS_KEY: miniostorage
default-cpus: 100m
default-memory: 100Mi
logger.yaml: |
logger:
show-source: true
level: 2
resource_manager.yaml: |
propeller:
resourcemanager:
type: noop
storage.yaml: |+
storage:
type: minio
connection:
access-key: minio
auth-type: accesskey
secret-key: miniostorage
disable-ssl: true
endpoint: http://minio.flyte.svc.cluster.local:9000
region: us-east-1
container: "my-s3-bucket"
kind: ConfigMap
metadata:
name: flyte-propeller-config-hhtmttc8b4
namespace: flyte
---
apiVersion: v1
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: postgres
host: postgres
port: 5432
username: postgres
logger.yaml: |
logger:
level: 4
show-source: true
kind: ConfigMap
metadata:
labels:
app.kubernetes.io/instance: flyte
app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: flytescheduler
helm.sh/chart: flyte-v0.1.10
name: flyte-scheduler-config
namespace: flyte
---
apiVersion: v1
data:
pass.txt: YXdlc29tZXNhdWNl
kind: Secret
metadata:
name: db-pass-9dgchhk2bm
namespace: flyte
type: Opaque
---
apiVersion: v1
kind: Secret
metadata:
name: flyte-admin-auth
namespace: flyte
type: Opaque
---
apiVersion: v1
kind: Secret
metadata:
name: flyte-pod-webhook
namespace: flyte
type: Opaque
---
apiVersion: v1
kind: Secret
metadata:
name: flyte-secret-auth
namespace: flyte
stringData:
client_secret: foobar
type: Opaque
---
apiVersion: v1
kind: Service
metadata:
annotations:
contour.heptio.com/upstream-protocol.h2c: grpc
name: datacatalog
namespace: flyte
spec:
ports:
- name: http
port: 88
protocol: TCP
targetPort: 8088
- name: grpc
port: 89
protocol: TCP
targetPort: 8089
selector:
app: datacatalog
---
apiVersion: v1
kind: Service
metadata:
annotations:
projectcontour.io/upstream-protocol.h2c: grpc
name: flyte-pod-webhook
namespace: flyte
spec:
ports:
- name: https
port: 443
protocol: TCP
targetPort: 9443
selector:
app: flyte-pod-webhook
---
apiVersion: v1
kind: Service
metadata:
annotations:
projectcontour.io/upstream-protocol.h2c: grpc
name: flyteadmin
namespace: flyte
spec:
ports:
- name: redoc
port: 87
protocol: TCP
targetPort: 8087
- name: http
port: 80
protocol: TCP
targetPort: 8088
- name: grpc
port: 81
protocol: TCP
targetPort: 8089
selector:
app: flyteadmin
---
apiVersion: v1
kind: Service
metadata:
name: minio
namespace: flyte
spec:
externalName: minio
ports:
- name: minio-api
port: 9000
- name: minio-console
port: 9001
selector:
app: minio
---
apiVersion: v1
kind: Service
metadata:
name: postgres
namespace: flyte
spec:
ports:
- port: 5432
selector:
app: postgres
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: datacatalog
name: datacatalog
namespace: flyte
spec:
replicas: 1
selector:
matchLabels:
app: datacatalog
template:
metadata:
annotations:
prometheus.io/path: /metrics
prometheus.io/port: "10254"
prometheus.io/scrape: "true"
labels:
app: datacatalog
app.kubernetes.io/name: datacatalog
app.kubernetes.io/version: 0.3.0
spec:
containers:
- command:
- datacatalog
- --config
- /etc/datacatalog/config/*.yaml
- serve
image: cr.flyte.org/flyteorg/datacatalog:v1.0.51
imagePullPolicy: IfNotPresent
name: datacatalog
ports:
- containerPort: 8088
- containerPort: 8089
volumeMounts:
- mountPath: /etc/datacatalog/config
name: config-volume
- mountPath: /etc/db
name: db-pass
initContainers:
- command:
- datacatalog
- --config
- /etc/datacatalog/config/*.yaml
- migrate
- run
image: cr.flyte.org/flyteorg/datacatalog:v1.0.51
imagePullPolicy: IfNotPresent
name: run-migrations
volumeMounts:
- mountPath: /etc/datacatalog/config
name: config-volume
- mountPath: /etc/db
name: db-pass
securityContext:
fsGroup: 65534
fsGroupChangePolicy: Always
runAsUser: 1001
serviceAccountName: datacatalog
volumes:
- emptyDir: {}
name: shared-data
- configMap:
name: datacatalog-config-64k8dg9gck
name: config-volume
- name: db-pass
secret:
secretName: db-pass-9dgchhk2bm
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: flyte-pod-webhook
name: flyte-pod-webhook
namespace: flyte
spec:
selector:
matchLabels:
app: flyte-pod-webhook
template:
metadata:
annotations:
prometheus.io/path: /metrics
prometheus.io/port: "10254"
prometheus.io/scrape: "true"
labels:
app: flyte-pod-webhook
app.kubernetes.io/name: flyte-pod-webhook
app.kubernetes.io/version: 0.5.13
spec:
containers:
- args:
- webhook
- --config
- /etc/flyte/config/*.yaml
command:
- flytepropeller
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116
imagePullPolicy: IfNotPresent
name: webhook
volumeMounts:
- mountPath: /etc/flyte/config
name: config-volume
readOnly: true
- mountPath: /etc/webhook/certs
name: webhook-certs
readOnly: true
initContainers:
- args:
- webhook
- init-certs
- --config
- /etc/flyte/config/*.yaml
command:
- flytepropeller
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116
imagePullPolicy: IfNotPresent
name: generate-secrets
volumeMounts:
- mountPath: /etc/flyte/config
name: config-volume
securityContext:
fsGroup: 65534
fsGroupChangePolicy: Always
runAsUser: 1001
serviceAccountName: flyte-pod-webhook
volumes:
- configMap:
name: flyte-propeller-config-hhtmttc8b4
name: config-volume
- name: webhook-certs
secret:
secretName: flyte-pod-webhook
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: flyteadmin
name: flyteadmin
namespace: flyte
spec:
replicas: 1
selector:
matchLabels:
app: flyteadmin
template:
metadata:
annotations:
prometheus.io/path: /metrics
prometheus.io/port: "10254"
prometheus.io/scrape: "true"
labels:
app: flyteadmin
app.kubernetes.io/name: flyteadmin
app.kubernetes.io/version: 0.4.13
spec:
containers:
- command:
- flyteadmin
- --config
- /etc/flyte/config/*.yaml
- serve
image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118
imagePullPolicy: IfNotPresent
name: flyteadmin
ports:
- containerPort: 8088
- containerPort: 8089
resources:
limits:
cpu: "0.1"
ephemeral-storage: 100Mi
memory: 200Mi
volumeMounts:
- mountPath: /srv/flyte
name: shared-data
- mountPath: /etc/flyte/config
name: config-volume
- mountPath: /etc/db
name: db-pass
- mountPath: /etc/secrets/
name: auth
- command:
- sh
- -c
- ln -s /usr/share/nginx/html /usr/share/nginx/html/openapi && sh /usr/local/bin/docker-run.sh
env:
- name: PAGE_TITLE
value: Flyte Admin OpenAPI
- name: SPEC_URL
value: /api/v1/openapi
- name: PORT
value: "8087"
image: docker.io/redocly/redoc
imagePullPolicy: IfNotPresent
name: redoc
ports:
- containerPort: 8087
resources:
limits:
cpu: "0.1"
memory: 200Mi
initContainers:
- command:
- sh
- -c
- until pg_isready -h postgres -p 5432; do echo waiting for database; sleep 2; done;
image: ecr.flyte.org/ubuntu/postgres:13-21.04_beta
name: check-db-ready
securityContext:
runAsUser: 999
- command:
- flyteadmin
- --config
- /etc/flyte/config/*.yaml
- migrate
- run
image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118
imagePullPolicy: IfNotPresent
name: run-migrations
volumeMounts:
- mountPath: /etc/flyte/config
name: config-volume
- mountPath: /etc/db
name: db-pass
- command:
- flyteadmin
- --config
- /etc/flyte/config/*.yaml
- migrate
- seed-projects
- flytetester
- flytesnacks
image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118
imagePullPolicy: IfNotPresent
name: seed-projects
volumeMounts:
- mountPath: /etc/flyte/config
name: config-volume
- mountPath: /etc/db
name: db-pass
- command:
- flyteadmin
- --config
- /etc/flyte/config/*.yaml
- clusterresource
- sync
image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118
imagePullPolicy: IfNotPresent
name: sync-cluster-resources
volumeMounts:
- mountPath: /etc/flyte/clusterresource/templates
name: resource-templates
- mountPath: /etc/flyte/config
name: config-volume
- mountPath: /etc/db
name: db-pass
- args:
- flyteadmin --config=/etc/flyte/config/*.yaml secrets init --localPath /etc/scratch/secrets && flyteadmin --config=/etc/flyte/config/*.yaml secrets create --fromPath /etc/scratch/secrets
command:
- /bin/sh
- -c
env:
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: cr.flyte.org/flyteorg/flyteadmin:v1.1.118
imagePullPolicy: IfNotPresent
name: generate-secrets
volumeMounts:
- mountPath: /etc/flyte/config
name: config-volume
- mountPath: /etc/scratch
name: scratch
securityContext:
fsGroup: 65534
fsGroupChangePolicy: Always
runAsUser: 1001
serviceAccountName: flyteadmin
volumes:
- configMap:
name: clusterresource-template-dk5mbchdmt
name: resource-templates
- emptyDir: {}
name: shared-data
- emptyDir: {}
name: scratch
- configMap:
name: flyte-admin-config-hc64g2ct6h
name: config-volume
- name: db-pass
secret:
secretName: db-pass-9dgchhk2bm
- name: auth
secret:
secretName: flyte-admin-auth
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: flytepropeller
name: flytepropeller
namespace: flyte
spec:
selector:
matchLabels:
app: flytepropeller
template:
metadata:
annotations:
prometheus.io/path: /metrics
prometheus.io/port: "10254"
prometheus.io/scrape: "true"
labels:
app: flytepropeller
app.kubernetes.io/name: flytepropeller
app.kubernetes.io/version: 0.7.1
spec:
containers:
- args:
- --config
- /etc/flyte/config/*.yaml
command:
- flytepropeller
env:
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: cr.flyte.org/flyteorg/flytepropeller:v1.1.116
imagePullPolicy: IfNotPresent
name: flytepropeller
ports:
- containerPort: 10254
volumeMounts:
- mountPath: /etc/flyte/config
name: config-volume
- mountPath: /etc/secrets/
name: auth
securityContext:
fsGroup: 65534
fsGroupChangePolicy: Always
runAsUser: 1001
serviceAccountName: flytepropeller
volumes:
- configMap:
name: flyte-propeller-config-hhtmttc8b4
name: config-volume
- name: auth
secret:
secretName: flyte-secret-auth
---