Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 390 Bytes

templates.md

File metadata and controls

27 lines (23 loc) · 390 Bytes

Template Cheat Sheet

Entire ConfigMap as Environment Variables

    spec:
      containers:
        - envFrom:
            - configMapRef:
                name: configmap-name

Run a Pod as a Specific Service Account

kind: DeploymentConfig
metadata:
  ...
spec:
  ...
  template:
    ...
    spec:
      containers:
      ...
      serviceAccountName: specialaccount