Hi guys, I want to update the spec of a service de...
# kubernetes
v
Hi guys, I want to update the spec of a service deployed with the pulumi chart resource. Any pointers on how to do this?
Copy code
kind: Service
apiVersion: v1
metadata:
  name: my-service
spec:
  type: ExternalName
  externalName: test-service.namespacename.svc.cluster.local
Copy code
nifi_chart = Chart(
    'nifi',
    ChartOpts(
        namespace="nifi",
        resource_prefix=stack_name,
        chart='nifi',
        version="v0.7.8",
        fetch_opts={'repo': '<https://cetic.github.io/helm-charts>'},
        values={
            "resources": {
                "requests": {
                    "cpu": "2000m",
                    "memory": "8Gi"
                },
I guess this is more of a helm question.
b
there's an example here, chart with transformations
v
oh right!
Thanks!