Kubernetes how to run container only after volume(nfs) is mounted

2/17/2016

The official nginx image does not start on my setup because I am mounting the config files from this nfs volume.I am trying overcome this with a bash script like below, but it is not working. Any suggestions? kubectl logs conteinerxxx -p returns nginx: invalid option: "off". But nginx -g "daemon off;"seems to run nice on my shell. Is there a more idiomatic way of doing this? BTW this is a coreos cluster on DigitalOcean.

dockerfile

//REPLACE THE OLD `CMD ["nginx", "-g", "daemon off;"]`
ADD nginxinit.sh /nginxinit.sh
ENTRYPOINT ["./nginxinit.sh"]

bash

#!/usr/bin/env bash
until mountpoint -q /etc/nginx; do
    echo "$(date) - wainting for NGINX config files to be mounted..."
    sleep 1
done

nginx -g "daemon off;"

RC

apiVersion: v1
kind: ReplicationController
metadata:
  name: mypod
  labels:
    name: mypod
spec:
  replicas: 1
  selector:
    name: mypod
  template:
    metadata:
      labels:
        name: mypod
    spec:
      containers:
        - image: cescoferraro/nginx
          name: myfrontend
          volumeMounts:
          - mountPath: "/etc/nginx"
            name: nginx-nfs
      volumes:
        - name: nginx-nfs
          persistentVolumeClaim:
            claimName: nginx-nfs

PV

apiVersion: v1
kind: PersistentVolume
metadata:
  name: nginx-nfs
spec:
  capacity:
    storage: 32Mi
  accessModes:
    - ReadWriteMany
  nfs:
    # FIXME: use the right IP
    server: x.x.x.x
    path: "/nginx"

PVC

kind: PersistentVolumeClaim
apiVersion: v1
metadata:
  name: nginx-nfs
spec:
  accessModes:
    - ReadWriteMany
  resources:
    requests:
      storage: 32Mi
-- CESCO
docker
kubernetes
nginx

1 Answer

5/23/2018

Better to put configs into configMap

      volumeMounts:
        - name: nfsvol
          mountPath: /srv/nfs/share
        - name: config-volume
          mountPath: /etc/nginx
  volumes:
    - name: nfsvol
      persistentVolumeClaim:
        claimName: nfs-pvc
    - name: config-volume
      projected:
        sources:
        - configMap:
            name: core-nginx-config
            items:
             - key: fastcgi_params
               path: fastcgi_params
             - key: mime.types
               path: mime.types
             - key: nginx.conf
               path: nginx.conf
-- Trurl McByte
Source: StackOverflow