This message was deleted.
# general
s
This message was deleted.
g
volumes
doesn’t include the
server
field, so that’s why the type checker is complaining. https://www.pulumi.com/docs/reference/pkg/kubernetes/core/v1/pod/#volume
path
is also incorrect
Oh, I think you put a few of the args in the wrong spot. This is probably what you want:
Copy code
containers: [
            {
                name: appServerLabel,
                image: config.get("docker_image") + ":" + config.get("docker_image_tag"),
                ports: [{name: "http", containerPort: 80},{name: "https", containerPort: 443}],
                volumeMounts: [
                    {
                        name: "volume-bigdisk",
                        mountPath: "/logs/"
                    }
                ],
            }
        ],
        volumes: [
            {
                name: "volume-bigdisk",
                nfs: {
                    server: "servername*****",
                    path: "/af_appserver/VAF/bigdisk",
                    readOnly: false
                }
            }
        ]
h
Thanks.. it worked.