hey guys, another q, maybe I missed this somewhere...
# announcements
a
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
k
Pod template - @Dan Rammer (hamersaw) is there a doc for this
d
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
k
@Samhita Alla
d
@allen hopefully this covers just about everything - happy to answer any additional questions!
a
Thanks @Dan Rammer (hamersaw) 🙂 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
d
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
a
I found this also helpful:
🙌 2
161 Views