hey guys, another q, maybe I missed this somewhere in the docs, but how do I configure flyte propell...
g
hey guys, another q, maybe I missed this somewhere in the docs, but how do I configure flyte propeller settings? Specifically, I want to change the K8s pod spec. I couldn’t find this anywhere in the
values.yaml
file in the Helm chart
f
Pod template - @hallowed-mouse-14616 is there a doc for this
h
Very happy that this is the FIRST time I can link to these docs - using the default PodTemplate to configure all k8s Pods that Flyte launches.
🦜 3
❤️ 5
f
@tall-lock-23197
h
@glamorous-artist-35470 hopefully this covers just about everything - happy to answer any additional questions!
g
Thanks @hallowed-mouse-14616 🙂 I actually saw those docs already. I’m wondering how to do step 1 😅 . Where are the flyte propeller settings located? I don’t see this
default-pod-template-name
field being set to “” anywhere
h
Oh no worries. The setting should be in the flytepropeller configmap. By default it is not set, this means it will be disabled. So you need to manually set it. The location is under the k8s plugin configuration:
Copy code
plugins:
  k8s:
    inject-finalizer: true
    default-annotations:
      - annotationKey1: annotationValue1
    resource-tolerations:
      // omitted
    default-env-vars:
      - FOO: bar
    default-pod-template-name: "default-template"
I think your using EKS - but for reference in the sandbox environment it will be generated here in the helm chart.
thx 1
👍 1
d
I found this also helpful:
🙌 2
162 Views