Franco Bocci
02/22/2023, 12:39 PMFelix Ruess
02/22/2023, 1:49 PMFranco Bocci
02/22/2023, 1:53 PMFelix Ruess
02/22/2023, 1:59 PMFranco Bocci
02/22/2023, 2:00 PMFelix Ruess
02/22/2023, 2:08 PMDan Rammer (hamersaw)
02/22/2023, 2:13 PMFranco Bocci
02/22/2023, 2:28 PMplugins:
k8s:
default-cpus: 100m
default-memory: 100Mi
default-pod-template-name: flyte-pod-template
default-annotations:
- <http://iam.amazonaws.com/role|iam.amazonaws.com/role>: some-aws-role
default-env-vars:
- LOG: "debug"
default-labels:
- an-index: "some-flyte-index"
resource-tolerations:
<http://nvidia.com/gpu|nvidia.com/gpu>:
key: flyte/gpu
value: dedicated
operator: Equal
---
Pod Template:
apiVersion: v1
kind: PodTemplate
metadata:
name: flyte-pod-template
namespace: flyte-namespace-of-my-project-development
template:
metadata:
labels:
- foo
annotations:
- foo: initial-value
spec:
containers:
- name: default
image: <http://docker.io/rwgrim/docker-noop|docker.io/rwgrim/docker-noop>
env:
- name: SOME
value: variable
- name: ANOTHER
value: variable
Dan Rammer (hamersaw)
02/22/2023, 2:33 PMLOG: "debug"
from the plugin is reflected in the Pod
. However, the ANOTHER: variable
and SOME: variable
are not? The labels and annotations from the PodTemplate
are coming through though right?Franco Bocci
02/22/2023, 2:34 PMDan Rammer (hamersaw)
02/22/2023, 2:39 PMPodTemplate
env vars are coming through. I'm guessing this is a propeller version issue.Franco Bocci
02/22/2023, 2:48 PM