@@ -47,6 +47,10 @@ global:
4747 # Note: Secret must contain "pass.txt" key
4848 KUBERNETES_SECRET_NAME : " "
4949
50+ # Union Private ECR repository prefix for control plane images
51+ # Contact Union for controlplane access and distribution.
52+ IMAGE_REPOSITORY_PREFIX : " 643379628101.dkr.ecr.us-east-1.amazonaws.com/union-cp"
53+
5054# ----------------------------------------------------------------------------
5155# Additional Configuration
5256# ----------------------------------------------------------------------------
@@ -58,9 +62,9 @@ global:
5862dbPass : " "
5963# -- Set the image used for control plane services
6064image :
61- repository : " "
65+ repository : " {{ .Values.global.IMAGE_REPOSITORY_PREFIX }}/services "
6266 pullPolicy : IfNotPresent
63- tag : " "
67+ tag : " {{ .Chart.AppVersion }} "
6468
6569# -- Default config for Union services (excluding flyte subchart)
6670defaults :
@@ -512,9 +516,9 @@ console:
512516 replicaCount : 1
513517
514518 image :
515- repository : " "
519+ repository : " {{ .Values.global.IMAGE_REPOSITORY_PREFIX }}/unionconsole "
516520 pullPolicy : IfNotPresent
517- tag : " "
521+ tag : " {{ .Chart.AppVersion }} "
518522
519523 nameOverride : " "
520524 # More readable resource names.
@@ -590,7 +594,9 @@ flyte:
590594 replicaCount : 1
591595 # -- Set the image used for flyteadmin
592596 image :
593- repository : " "
597+ # TODO flyte-core does not render templated repository and tag correctly.
598+ # PR: https://github.com/flyteorg/flyte/pull/6711
599+ repository : " 643379628101.dkr.ecr.us-east-1.amazonaws.com/union-cp/services"
594600 pullPolicy : IfNotPresent
595601 tag : " "
596602 serviceAccount :
@@ -630,6 +636,14 @@ flyte:
630636 ephemeral-storage : 200Mi
631637 memory : 500Mi
632638
639+ flytescheduler :
640+ image :
641+ # TODO flyte-core does not render templated repository and tag correctly.
642+ # PR: https://github.com/flyteorg/flyte/pull/6711
643+ repository : " 643379628101.dkr.ecr.us-east-1.amazonaws.com/union-cp/flytescheduler"
644+ pullPolicy : IfNotPresent
645+ tag : " "
646+
633647 workflow_scheduler :
634648 enabled : false
635649 type : native
@@ -638,7 +652,9 @@ flyte:
638652 enabled : true
639653 replicaCount : 1
640654 image :
641- repository : " " # -- Set the repository for the public datacatalog image"
655+ # TODO flyte-core does not render templated repository and tag correctly.
656+ # PR: https://github.com/flyteorg/flyte/pull/6711
657+ repository : " 643379628101.dkr.ecr.us-east-1.amazonaws.com/union-cp/datacatalog" # -- Set the repository for the public datacatalog image"
642658 tag : " " # -- Set the tag for the public datacatalog image
643659 pullPolicy : " IfNotPresent" # -- Set the pull policy for the datacatalog image
644660 resources :
@@ -662,7 +678,9 @@ flyte:
662678 podEnv : {}
663679 replicaCount : 1
664680 image :
665- repository : " " # -- Set the repository for the console image"
681+ # TODO flyte-core does not render templated repository and tag correctly.
682+ # PR: https://github.com/flyteorg/flyte/pull/6711
683+ repository : " 643379628101.dkr.ecr.us-east-1.amazonaws.com/union-cp/flyteconsole" # -- Set the repository for the console image"
666684 tag : " " # -- Set the tag for the console image
667685 resources :
668686 # flyteconsole service has less memory footprint but cpu goes up depends on traffic, If CPU use is high then we will use HPA
@@ -697,7 +715,9 @@ flyte:
697715 enabled : true
698716 replicaCount : 1
699717 image :
700- repository : " " # -- Set the repository for the private cacheservice image"
718+ # TODO flyte-core does not render templated repository and tag correctly.
719+ # PR: https://github.com/flyteorg/flyte/pull/6711
720+ repository : " 643379628101.dkr.ecr.us-east-1.amazonaws.com/union-cp/services" # -- Set the repository for the private cacheservice image"
701721 tag : " " # -- Set the tag for the private cacheservice datacatalog image
702722 pullPolicy : " IfNotPresent" # -- Set the pull policy for the private cacheservice image
703723 serviceAccount :
0 commit comments