Hi,

I have a docker container that I run with following options:
docker run -d --net=host --add-host=moby:127.0.0.1 --shm-size=1G \
             -v 
/Users/spedamallu/Files/Learning/alluxio/alluxio-1.5.0-hadoop-2.8/integration/docker/underStorage:/underStorage
 \
             -e ALLUXIO_MASTER_HOSTNAME=127.0.0.1 \
             -e ALLUXIO_WORKER_MEMORY_SIZE=1GB \
             -e ALLUXIO_UNDERFS_ADDRESS=/underStorage \
             symphony-docker-local.jfrog.io/logsaas/alluxio-local worker

I'm trying to deploy this image via a k8s pod. I know I can set environment 
variables and resource limits from the specification, but how do I set / give 
options for container run command? I'm specifically looking on how to set 
"--net=host --add-host=moby:127.0.0.1" parameters. Here's how I have the 
configuration for this container in k8s yaml I have so far:

      - name: alluxio-worker
        image: symphony-docker-local.jfrog.io/logsaas/alluxio-worker:latest
        command: ["--net", "host", "--add-host", "moby:127.0.0.1"]
        imagePullPolicy: IfNotPresent
        ports:
        env:
        - name: ALLUXIO_MASTER_HOSTNAME
          value: "127.0.0.1"
        - name: ALLUXIO_WORKER_MEMORY_SIZE
          value: "3GB"
        - name: ALLUXIO_UNDERFS_ADDRESS
          value: "/"
        resources:
          limits:
            cpu: "100m"
            memory: "3Gi"
        volumeMounts:

Any help is much appreciated!

Thanks in advance,
Shashank

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q&A" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.
  • [kubernetes-users]... shashank . pedamallu

Reply via email to