100% Private

Kubernetes ConfigMap Generator - Create K8s Config YAML

Generate Kubernetes ConfigMaps from key-value pairs or files. Create configuration for apps without rebuilding images. Browser-based tool.

Usage Examples
# As environment variables
envFrom:
  - configMapRef:
      name: app-config

# As volume mount
volumes:
  - name: config
    configMap:
      name: app-config
volumeMounts:
  - name: config
    mountPath: /etc/config

# Single key as env var
env:
  - name: APP_ENV
    valueFrom:
      configMapKeyRef:
        name: app-config
        key: APP_ENV

Related Tools

View all Kubernetes configurators →

Privacy Notice: This site works entirely in your browser. We don't collect or store your data. Optional analytics help us improve the site. You can deny without affecting functionality.