This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Imports | |
| */ | |
| const fs = require('fs'); | |
| /** | |
| * Extract env keys from env content | |
| */ | |
| function parseEnv(envContent) { | |
| const lines = envContent.split('\n'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Secret | |
| metadata: | |
| name: my-bcrypt-secret | |
| data: | |
| password: {{ htpasswd "" .Values.password | trimPrefix ":" | b64enc }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "workbench.editor.enablePreview": false, | |
| "explorer.confirmDragAndDrop": false, | |
| "editor.minimap.enabled": false, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "explorer.autoReveal": false, | |
| "workbench.tree.renderIndentGuides": "none", | |
| "search.location": "sidebar", | |
| "workbench.editor.showTabs": true, | |
| "diffEditor.renderSideBySide": false, |