Convert .env variables into Kubernetes YAML instantly in the browser.
Generate:
- ConfigMap YAML
- Secret YAML
- Pure frontend tool
- Runs completely in browser
- Nothing sent to any server
- Kubernetes ready output
- Save time
https://virsuryaircas.github.io/env2yaml/
APP_NAME=my-awesome-app APP_ENV=production APP_PORT=8080 DEBUG=false
apiVersion: v1 kind: ConfigMap metadata: name: my-app-config namespace: production data: APP_NAME: "my-awesome-app" APP_ENV: production APP_PORT: "8080" DEBUG: "false"