wemake-django-template icon indicating copy to clipboard operation
wemake-django-template copied to clipboard

Document init containers and migrations

Open sobolevn opened this issue 4 years ago • 0 comments

That's how we run migrate and similar scripts in real-life:

initContainers:
  - args:
      - ...
    command:
      - ...
    envFrom:
      - configMapRef:
        name: django-env-map
    image:
    imagePullPolicy: Always
    name: django_bundle
    volumeMounts:
      - mountPath: /var/www/django
        name: ...
      - mountPath: /code/locale
        name: ...

sobolevn avatar Feb 27 '20 13:02 sobolevn