I have a a stable helm chart (airflow) <https://gi...
# kubernetes
h
I have a a stable helm chart (airflow) https://github.com/helm/charts/blob/master/stable/airflow/values.yaml. I am able to override values in pulumi code when the values.yaml has a map, array, string etc. How can I override affinity which needs new line and indentation ?
g
Should be able to use a raw string with backticks
Copy code
`affinity:
  nodeAffinity: 
    requiredDuringSchedulingIgnoredDuringExecution:
      nodeSelectorTerms:
      - matchExpressions:
        - key: clusterType
          operator: In
          values:
          - standard`
h
thank you. it worked.