I'm having trouble converting this ConfigMap into ...
# kubernetes
a
I'm having trouble converting this ConfigMap into a pulumi .ts representation.
Copy code
kind: ConfigMap
apiVersion: v1
metadata:
  name: nginx-nginx-ingress-controller
  namespace: kube-system
  labels:
    k8s-app: nginx-ingress-controller
data:
  proxy-buffer-size: "128k"
  proxy-buffers: "8 128k"
I've already got k8s resource in the cluster via manifest and I'm trying to import it so I can change it in pulumi, but I can't get the
data
sections to match up and so pulumi won't let it work.